Stars: 157
Forks: 54
Pull Requests: 25
Issues: 7
Watchers: 20
Last Updated: 2022-12-08 13:07:18
The base for developing awesome projects
License:
Languages: PHP, Vue, HTML
Laravel Scaffold is a free, Open Source Starter kit/Scaffold/Boilerplate a fasted way of building your custom and modular Laravel application that grows with you. Created with Laravel 5.7 and VueJS.
See the documentation for more details or you can also try our live demo.
https://laravel.com/docs/5.7#server-requirements
git clone https://github.com/modulr/laravel-scaffold.git
Enter folder
cd laravel-scaffold
Install Depencencies
composer install
npm install
Generate .env file
cp .env.example .env
Generate APP_KEY
php artisan key:generate
Generate symbolic link to Storage
php artisan storage:link
If you are in production
sudo chown -R www-data:www-data storage
Database
# Create Data Base
mysql -u{user} -p{password}
mysql> create database laravel_scaffold;
# Add params into .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_scaffold
DB_USERNAME=user
DB_PASSWORD=password
# Migrations
php artisan migrate
# Seeder (optional)
php artisan db:seed
# Compiling assets
npm run dev
# Run serve
php artisan serve
or to developer mode
npm run dev || npm run watch
Auth
Profile
Users
Roles & Permission
The MIT© License 2018 - Modulr.
Developed with 💡 🎧 🍺 by @alfredobarron