query builder laravel left join code example
Example 1: laravel not in query
DB::table(..)->select(..)->whereNotIn('book_price', [100,200])->get();
Example 2: laravel find query
php artisan make:model Flight --migration
php artisan make:model Flight -m