@extends('managers.layout.master') @section('title', 'الرئيسية') @section('content')

لوحة التحكم

عدد حجوزات اليوم

الحجوزات الجديدة المنشأه اليوم

{{\App\Models\Reservation::whereDate('created_at',\Carbon\Carbon::today())->whereType('app')->whereIn('unit_id',$user_unites_id)->count()}}

ضيوف الإسبوع

الحجوزات المتبقي علي موعدها أسبوع أو أقل

{{$week_reservation > 0 ? $week_reservation : "لا يوجد لديك ضيوف" }}
الحجوزات الحالية

{{\App\Models\Reservation::where('status','approve')->whereAdminPay('false')->whereIn('unit_id',$user_unites_id)->whereType('app')->count()}}

الحجوزات السابقة

{{\App\Models\Reservation::where('status','approve')->whereAdminPay('true')->whereIn('unit_id',$user_unites_id)->whereType('app')->count()}}

الحجوزات الملغية

{{\App\Models\Reservation::where('status','refuse')->whereIn('unit_id',$user_unites_id)->whereType('app')->count()}}

الحجوزات المؤجلة

{{\App\Models\Reservation::where('fixed','true')->whereIn('unit_id',$user_unites_id)->whereType('app')->count()}}

حجوزات التطبيق

{{\App\Models\Reservation::where('type','app')->whereIn('unit_id',$user_unites_id)->count()}}

حجوزات خارج التطبيق

{{\App\Models\Reservation::where('type','contact')->whereIn('unit_id',$user_unites_id)->count()}}

العقارات

{{\App\Models\Building::where('owner_id',auth()->user()->user_manager->id)->count()}}

الوحدات

{{\App\Models\Unite::whereIn('id',$user_unites_id)->count()}}

@stop