HOME


Mini Shell 1.0
La Pieza.DO | Todo lo que buscas!

Bienvenido de nuevo!

Acceso Cuenta Delivery
DIR: /var/www/devs.lapieza.net/app/Http/Controllers/Seller/
Upload File :
Current File : /var/www/devs.lapieza.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'));

    }

}