I created a new project via composer in Laravel 5.1.
I couldn\'t find the app.blade.php.and home.blade.php
file, what am I doing wrong?
If you want to use laravel 5.0 you can download it from their repo here:
https://github.com/laravel/laravel/tree/5.0
And here is a video showing how to get started:
https://scotch.io/tutorials/login-with-the-built-in-laravel-5-scaffolding
Basically just
1) run composer install
to get the dependencies then
2) run artisan key:generate
to generate your random key for .env
file.
3) set your database info in .env
file
4) run artisan migrate
to set up the database
and you should be set