Welcome! Use this Laravel skeleton to quickly start any new project. All you get is the Laravel Mix with Bootstrap and Vue JavaScript Framework.
- Laravel 5.6
- PHP 7.1.3 or upper
Visit the demo site at https://laravel-skeleton.herokuapp.com.
SSH git@github.com:jaureguivictoria/Laravel-Skeleton.git
HTTPS https://github.com/jaureguivictoria/Laravel-Skeleton.git
In webpack.mix.js you will place all the settings you want.
For starters, I am only putting one js and one sass:
mix.js('resources/assets/js/app.js', 'public/js');
mix.sass('resources/assets/sass/app.scss', 'public/css');
Go to resources/assets/sass/app.scss and fill in any customizations you want.
Go to resources/assets/js/app.js and define all the components you need.
Run all Laravel Mix tasks:
npm run dev
Run all Laravel Mix tasks and minify output:
npm run production
Found a bug? Have an idea for an improvement? Feel free to add an issue.