laravel scope without reference code example
Example 1: how to create model in laravel
php artisan make:model Flight
Example 2: laravel scope query
$model = App\Models\Flight::where('legs', '>', 100)
->firstOr(['id', 'legs'], function () {
// ...
});