Update timeline logic to sort by date instead of id

This commit is contained in:
Daniel Supernault 2018-09-11 20:55:19 -06:00
parent 7f73b1ae6b
commit 197829224e
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ class SiteController extends Controller
->whereNotIn('profile_id', $filtered)
->whereHas('media')
->whereVisibility('public')
->orderBy('id', 'desc')
->orderBy('created_at', 'desc')
->withCount(['comments', 'likes', 'shares'])
->simplePaginate(20);
$type = 'personal';