Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rzki/laravel-volt-livewire-boilerplate

Laravel boilerplate with Volt admin dashboard template and Livewire
https://github.com/rzki/laravel-volt-livewire-boilerplate

boilerplate laravel laravel-boilerplate laravel-livewire laravel-livewire-boilerplate livewire

Last synced: about 16 hours ago
JSON representation

Laravel boilerplate with Volt admin dashboard template and Livewire

Awesome Lists containing this project

README

        

# 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:
```bash
git clone https://github.com/rzki/laravolt-livewire-boilerplate.git
cd laravel-volt-livewire-boilerplate
```

2. Install the dependencies:
```bash
composer install
npm install && npm run build
```
```npm run build``` are needed to build the assets

3. Copy the `.env.example` file to `.env`:
```bash
cp .env.example .env
```
Don't forget to change the DB credentials to your likings.

4. Generate the application key:
```bash
php artisan key:generate
```

5. Run the migrations:
```bash
php artisan migrate
```

6. Serve the application:
```bash
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](https://github.com/LaravelDaily/Larastarter).