Laravel Obtenha o último recorde
Model::latest()->first();
TheDutchScorpion
Model::latest()->first();
$data = Model::query()->latest()->get();
return DB::table('files')->order_by('upload_time', 'desc')->first();