@yield('meta')
{{ env('APP_ADMIN_NAME') . ' - ' . $title }}
@yield('css')
@php
$contactus_count = \App\Models\Contactus::where("seen",0)->count();
if($contactus_count==0)
$contactus_count = "";
$orders_count = \App\Models\Cart::where("status","=",1)->count();
$orders_count += \App\Models\Cart::where("status","=",7)->count();
if($orders_count==0)
$orders_count = "";
$newsletter_count = \App\Models\NewsLetter::where("seen",0)->count();
if($newsletter_count==0)
$newsletter_count = "";
$cartable_count = \App\Models\UserCartable::where("user_id",Auth::id())->whereIn('status', ['new',
'seen'])->count();
if($cartable_count==0)
$cartable_count = "";
@endphp
@yield('javascript')