Update ApiController

This commit is contained in:
Daniel Supernault 2019-10-01 21:52:27 -06:00
parent 9fc9058aa0
commit 9a50a6f627
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 2 deletions

View File

@ -1164,14 +1164,14 @@ class ApiV1Controller extends Controller
$id = $min ?? $max;
$notifications = Notification::whereProfileId($pid)
->whereDate('created_at', '>', $timeago)
->latest()
->where('id', $dir, $id)
->orderByDesc('created_at')
->limit($limit)
->get();
} else {
$notifications = Notification::whereProfileId($pid)
->whereDate('created_at', '>', $timeago)
->latest()
->orderByDesc('created_at')
->simplePaginate($limit);
}
$resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer());