laravel orm latest 28 29

Solutions on MaxInterview for laravel orm latest 28 29 by the best coders in the world

showing results for - "laravel orm latest 28 29"
Valerio
08 Apr 2019
1latest() is a function defined in Illuminate\Database\Query\Builder Class. It's job is very simple. This is how it is defined.
2public function latest($column = 'created_at')
3{
4    return $this->orderBy($column, 'desc');
5} 
6So, It will just orderBy with the column you provide in descending order with the default column will be created_at.
7