@extends('admin.layouts.master') @section('title') مواعيد {{ $vendor->name }} @endsection @section('css') @include('admin.layouts.css') @endsection @section('body')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
جميع المواعيد الخاصة بـ {{ $vendor->name }}
@forelse($appointments as $index => $appointment) @empty @endforelse
# اسم المستخدم الفحص التاريخ وقت البدء وقت الانتهاء
{{ $index + 1 }} {{ optional($appointment->user)->full_name ?? '-' }} {{ optional($appointment->inspection)->title ?? '-' }} {{ $appointment->date->format('Y-m-d') }} {{ $appointment->start_time->format('H:i') }} {{ $appointment->end_time->format('H:i') }}
لا توجد مواعيد حالياً
{{ $appointments->links() }}
@endsection @section('js') @include('admin.layouts.js') @endsection