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