mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-03 16:59:32 -05:00
(Update) Controllers Syntax
- use shorter and more readable syntax
- replace orderBy('created_at', 'DESC') with latest()
This commit is contained in:
@@ -31,7 +31,7 @@ class PollController extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$polls = Poll::orderBy('created_at', 'desc')->paginate(15);
|
||||
$polls = Poll::latest()->paginate(15);
|
||||
|
||||
return view('poll.latest', compact('polls'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user