@extends('admin.layout.master')
@section('title', 'الرئيسية')
@section('content')
الحجوزات الحالية
{{\App\Models\Reservation::where('status','approve')->whereAdminPay('false')->whereType('app')->count()}}
الحجوزات السابقة
{{\App\Models\Reservation::where('status','approve')->whereAdminPay('true')->whereType('app')->count()}}
الحجوزات الملغية
{{\App\Models\Reservation::where('status','refuse')->whereType('app')->count()}}
الحجوزات المؤجلة
{{\App\Models\Reservation::where('fixed','true')->whereType('app')->count()}}
حجوزات التطبيق
{{\App\Models\Reservation::where('type','app')->count()}}
العقارات
{{\App\Models\Building::count()}}
الوحدات
{{\App\Models\Unite::count()}}
@stop