origin) php artisan migrate -h // without -h executes PHP DDL in database\migrations dir php artisan migrate Migration table created successfully. Migrating: 2014_10_12_000000_create_users_table Migrated: 2014_10_12_000000_create_users_table (0.04 seconds) Migrating: 2014_10_12_100000_create_password_resets_table Migrated: 2014_10_12_100000_create_password_resets_table (0.01 seconds) // created are tbls PASSWORD_RESETS and USERS and MIGRATIONS (track of every migr.) php artisan migrate:fresh //drop tbls and create again php artisan make:migration CreateUsersTable //run 2014_10_12_000000_create_users_table.php php artisan make:auth // Authentication scaffolding generated successfully. Means : // in J:\awww\www\zbig\blog_laravel\routes\web.php new lines : Auth::routes(); Route::get('/home', 'HomeController@index')->name('home'); ee new top links Login and Register (email=moj gmail, psw=moj long) and after Register in blog page is only Home link.
xampp portable put J:\xampp\php in user path variable J:\awww\www\zbig>composer create-project --prefer-dist laravel/laravel todo_laravel J:\awww\www\zbig>composer create-project --prefer-dist laravel/laravel blog_laravel Installing laravel/laravel (v5.8.18) ... Writing lock file Generating optimized autoload files > @php artisan key:generate --ansi // see .env Application key set successfully. ////////////////////////////////////////// ## About Laravel ////////////////////////////////////////// - [Simple, fast routing engine](https://laravel.com/docs/routing). - [Powerful dependency injection container](https://laravel.com/docs/container). - Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. - Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). - Database agnostic [schema migrations](https://laravel.com/docs/migrations). - [Robust background job processing](https://laravel.com/docs/queues). - [Real-time event broadcasting](https://laravel.com/docs/broadcasting). Laravel is accessible, powerful, and provides tools required for large, robust applications. ## Learning Laravel [documentation](https://laravel.com/docs) If you don`t feel like reading, [Laracasts](https://laracasts.com) - over 1100 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript.