D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
truka.dentostock.com
/
app
/
Http
/
Controllers
/
API
/
Filename :
NotificationController.php
back
Copy
<?php namespace App\Http\Controllers\API; use Illuminate\Http\Request; use App\Models\Notification; use App\Http\Controllers\Controller; use App\Http\Resources\NotificationResource; class NotificationController extends Controller { public function getList(Request $request) { $user = auth()->user(); $user->last_notification_seen = now(); $user->save(); $type = isset($request->type) ? $request->type : null; if($type == "markas_read"){ if(count($user->unreadNotifications) > 0 ) { $user->unreadNotifications->markAsRead(); } } $page = isset($request->page) ? $request->page : 1; $limit = isset($request->limit) ? $request->limit : config('constant.PER_PAGE_LIMIT'); // $limit = config('constant.PER_PAGE_LIMIT'); $notifications = $user->Notifications->sortByDesc('created_at')->forPage($page,$limit); $all_unread_count = isset($user->unreadNotifications) ? $user->unreadNotifications->count() : 0; $items = NotificationResource::collection($notifications); $response = [ 'notification_data' => $items, 'all_unread_count' => $all_unread_count, ]; return json_custom_response($response); } }