laravel model id with dirfetn name in db code example
Example 1: laravel find query
$model = App\Models\Flight::where('legs', '>', 100)->firstOr(function () {
// ...
});
Example 2: laravel find query
foreach (Flight::where('foo', 'bar')->cursor() as $flight) {
//
}