klutzybubbles/laravel-skeleton

Fork Skeleton by KlutzyBubbles


Keywords
framework, laravel
License
MIT

Documentation

Laravel Skeleton

Latest Stable Version License

About

This skeleton is a fork from the laravel repo, it contains a simple navigation bar and footer for Bootstrap 4 and Laravel 5.6

This package is only intended for use with composer to create a project much faster than copying and pasting template files to the default laravel template.

To use the composer template simply use

composer create-project klutzybubbles/laravel-skeleton [directory]

Some other commands worth using in the setup phase

composer install
npm install

Key generation should be automatically done on project creation, but if for some reason it isnt there

php artisan key:generate
php artisan migrate:refresh

OPTIONAL (You can just register):

php artisan db:seed

After changes to scss or js files in the resources director have been changed you will need to run

npm run dev

Starting the server

php artisan serve

The above command doesn't play nice with js and css requests, so a workaround is to use PHP directly

php -S localhost:8000 -t public

I don't plan on keeping this repository up to date, but i will push updates every now and then.

Laravel Repo

https://github.com/laravel/laravel