get first record and last record in one query eloquent code example
Example 1: laravel get last record
Model::latest()->first();
Example 2: get the last saved row in a table laravel
$last = DB::table('items;)->latest()->first();
Model::latest()->first();
$last = DB::table('items;)->latest()->first();