Some simple tips to start with laravel
Install plugin : Laravel plugin Install Theme : Material Theme UI
composer create-project laravel/laravel
php artisan make:auth
In file RegisterController add those functions :
public function showRegistrationForm() { return redirect('login'); } public function register () {}
Set this line of code in file AppServiceProvider (in function boot()) :
Schema::defaultStringLength(191);
Gestion formulaire : https://laravelcollective.com/docs/5.2/html Debugbar : https://github.com/barryvdh/laravel-debugbar