how to use model in larave code example
Example 1: laravel scope query
$model = App\Models\Flight::where('legs', '>', 100)
->firstOr(['id', 'legs'], function () {
// ...
});
Example 2: laravel find query
foreach (Flight::where('foo', 'bar')->cursor() as $flight) {
//
}