Update BaseApiController

pull/628/head
Daniel Supernault 2018-12-10 20:36:53 -07:00
rodzic a774ad7373
commit 90e41d9855
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 16 dodań i 0 usunięć

Wyświetl plik

@ -8,6 +8,7 @@ use App\Http\Controllers\{
AvatarController
};
use Auth, Cache, URL;
use Carbon\Carbon;
use App\{
Avatar,
Notification,
@ -50,6 +51,21 @@ class BaseApiController extends Controller
return response()->json($res);
}
public function notifications(Request $request)
{
$pid = Auth::user()->profile->id;
$timeago = Carbon::now()->subMonths(6);
$notifications = Notification::with('actor')
->whereProfileId($pid)
->whereDate('created_at', '>', $timeago)
->orderBy('created_at','desc')
->paginate(10);
$resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer());
$res = $this->fractal->createData($resource)->toArray();
return response()->json($res);
}
public function accounts(Request $request, $id)
{
$profile = Profile::findOrFail($id);