how to index a column in laravel code example
Example 1: laravel create db table
php artisan make:migration create_users_table
Example 2: laravel make migration
php artisan make:migration CreateUsersTable
Example 3: how to index column in laravel
$table->index(['account_id', 'created_at']);