Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rzki/laravel-volt-livewire-boilerplate
- Owner: rzki
- Created: 2025-01-13T04:38:04.000Z (2 days ago)
- Default Branch: main
- Last Pushed: 2025-01-14T04:55:01.000Z (about 18 hours ago)
- Last Synced: 2025-01-14T05:34:22.404Z (about 17 hours ago)
- Topics: boilerplate, laravel, laravel-boilerplate, laravel-livewire, laravel-livewire-boilerplate, livewire
- Language: SCSS
- Homepage:
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 assets3. 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!
```
## CreditsThis project is using Volt admin dashboard based on the Larastarter package by [Laravel Daily](https://github.com/LaravelDaily/Larastarter).