عدد الخدمات
{{ \App\Models\Service::count() }}
إجمالى الطلبات
{{ \App\Models\Appointment::count() }}
فريق العمل
{{ \App\Models\Empolyee::count() }}
عدد المقالات
{{ \App\Models\Post::count() }}
@php
// $orders_last = \App\Models\Appointment::where('status', 'approved')
$orders_last = \App\Models\Appointment::limit(6)
->latest()
->get();
@endphp
الأسم | الهاتف | الحاله |
---|---|---|
{{ $order_last->name }} | {{ $order_last->mobile }} | {{ $order_last->status }} |
العميل | الموبايل |
---|---|
{{ $user_last->name }} | {{ $user_last->mobile }} |