Laravel 5.5 lesson - 5 Migrations - Part 2 Create and drop tables using migrations
У вашего броузера проблема в совместимости с HTML5
In this video I have discussed about how to create new tables with artisan migrate commands
Command used in this video:
## to migrate new migration files to database
php artisan migrate
## undo the previous migrations
php artisan migrate:rollback
## create new migration file to create new table
php artisan make:migration create_customers_table --create=customers
Github link: https://github.com/rubanraj54/laravel-lessons/tree/master/blog