Update BaseApiController

This commit is contained in:
Daniel Supernault 2019-09-20 22:31:34 -06:00
parent 9886ec5954
commit a24b4a40e0
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -48,8 +48,7 @@ class BaseApiController extends Controller
public function notifications(Request $request)
{
abort_if(!$request->user(), 403);
$pid = Auth::user()->profile->id;
$pid = $request->user()->profile_id;
$pg = $request->input('pg');
if($pg == true) {
$timeago = Carbon::now()->subMonths(6);
@ -62,7 +61,7 @@ class BaseApiController extends Controller
} else {
$this->validate($request, [
'page' => 'nullable|integer|min:1|max:10',
'limit' => 'nullable|integer|min:1|max:10'
'limit' => 'nullable|integer|min:1|max:40'
]);
$limit = $request->input('limit') ?? 10;
$page = $request->input('page') ?? 1;