Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.29 KB

File metadata and controls

61 lines (46 loc) · 1.29 KB

Laravolt Livewire Boilerplate

This is a boilerplate project for Laravel using Livewire, and Volt for Admin Dashboard.

Getting Started

Follow these instructions to get the project up and running on your local machine.

Prerequisites

  • PHP >= 7.3
  • Composer
  • Node.js & NPM/Yarn
  • Laravel CLI

Installation

  1. Clone the repository:

    git clone https://github.com/rzki/laravolt-livewire-boilerplate.git
    cd laravel-volt-livewire-boilerplate
  2. Install the dependencies:

    composer install
    npm install && npm run build

    npm run build are needed to build the assets

  3. Copy the .env.example file to .env:

    cp .env.example .env

    Don't forget to change the DB credentials to your likings.

  4. Generate the application key:

    php artisan key:generate
  5. Run the migrations:

    php artisan migrate
  6. Serve the application:

    php artisan serve

Your application should now be running at http://localhost:8000.

Login credential

Email       : [email protected]
Passsword   : Superadmin2024!

Credits

This project is using Volt admin dashboard based on the Larastarter package by Laravel Daily.