(Update) Controllers Syntax

- use shorter and more readable syntax
- replace orderBy('created_at', 'DESC') with latest()
This commit is contained in:
HDVinnie
2018-03-24 15:56:39 -04:00
parent de5a94d4f9
commit e3e21896e2
21 changed files with 40 additions and 39 deletions
+1 -1
View File
@@ -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'));
}