To create a simple ToDo application in Laravel, you first need to setup database. For that, start with configuring the .env file. Now to create table in Laravel, you need to create migration table. For that, use the following command
php artisan make:migration create_todo_table
Now execute migration with following command:
php artisan migrate
Full article on Creating table in Laravel for todo app.