laravel get first code example

Example 1: laravel get first record

'First email'
    User::whereEmail($email)->first();
'First Record'
   User::first();

Example 2: laravel eloquent get first

// return first row by id
$user = App\User::where('id',$id)->first();
// or return directly a field
$userId = App\User::where(...)->pluck('id');

Example 3: laravel 8 orderby

$flights = App\Models\Flight::where('active', 1)
               ->orderBy('name', 'desc')
               ->take(10)
               ->get();

Example 4: laravel find query

// Retrieve a model by its primary key...
$flight = App\Models\Flight::find(1);

// Retrieve the first model matching the query constraints...
$flight = App\Models\Flight::where('active', 1)->first();

// Shorthand for retrieving the first model matching the query constraints...
$flight = App\Models\Flight::firstWhere('active', 1);

Example 5: laravel find query

foreach (Flight::where('foo', 'bar')->cursor() as $flight) {
    //
}

Tags:

Sql Example