Updated to Laravel 5.1. My personal starting point for any Laravel app that requires standard users and admin users. Also has editable profiles (standard users can edit their own profile, admin users can edit all profiles).
See demo here (demo is Laravel 4 version but it works exactly the same) or install locally with instructions below.
This is just local installation using something like MAMP/WAMP or xampp. Of course you are free to use homestead if you like.
- clone the repo and cd into it
composer install- make sure db is running and credentials are setup in
config\database.php(or in your.envfile). - If you have no
.envfile you can use the example one. Just rename.env.exampleto.env. Enter your db credentials here. php artisan key:generatephp artisan migratephp artisan db:seed- (Optional) Run
vendor/bin/phpunitto run some functional tests I have written. Have a look at them in thetests/functionalfolder. php artisan serve- Visit localhost:8000 in your browser