laravel eloquent where get first code example
Example 1: 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 2: laravel eloquent fill
$flight->fill(['name' => 'Flight 22']);