[0] Create a new project
[1] Create Migration
Use Laravel's migration feature to create the table.
Run the following command in your terminal:
php artisan make:migration create_todos_table --create=todos
The above command will generate a new migrati...