ok
Direktori : /home2/selectio/www/limpiar.in.net/app/Http/Controllers/Seller/ |
Current File : /home2/selectio/www/limpiar.in.net/app/Http/Controllers/Seller/NotificationController.php |
<?php namespace App\Http\Controllers\Seller; use Auth; class NotificationController extends Controller { public function index() { $notifications = auth()->user()->notifications()->paginate(15); auth()->user()->unreadNotifications->markAsRead(); return view('seller.notification.index', compact('notifications')); } }