This is a typical Laravel 5.1 app. I recommend you create a Virtual Host for it.
Create a .env
file. Use the example .env.example
file to create it. Add your configurations here. You must configure a database connection before proceeding.
php artisan migrate
php artisan db:seed
php artisan user:create
Go to: /auth/login
to login.
- Avoid implicit controllers, use resources. keep the routes.php file clean.
- Create your models inside
App\Models
namespace. - Views should be placed inside directories dedicated to each controller. For example all the views for
IndexController
should be insideindex
directory under the main directory. - Assets should go inside
public/static
.