@php use App\Models\Notification; use App\Http\Controllers\ShopController; $shop = new ShopController(); $shops = $shop->checkShopList(); $unreadOrders = Notification::where('viewed',0) ->orderBy('id','desc') ->take(10) ->get(); $unreadOrderCount = $unreadOrders->count(); @endphp