@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('appointments.sections.index'), 'name' => "مواعيد المقابلات"], ['link' => route('appointments.reserved.index'), 'name' => "المواعيد المحجوزة"]],['title'=> 'مواعيد المقابلات']]; @endphp @section('vendor-style') @endsection @section('page-style') @endsection @section('title', 'ادارة مواعيد المقابلات') @section('content')
مواعيد المقابلات تحتوي الصفحة التالية علي مواعيد المقابلات التي تم حجزها من خلال نظام المقابلات كود اليوم الموعد اسم المكتب القسم اسم ولى الأمر تاريخ الحجز @foreach ($appointments as $key => $appointment) {{ $appointment->id }} {{ $appointment->selected_date}} {{ Carbon\Carbon::parse($appointment->appointment_time)->format('h:i') }} {{ $appointment->office_name }} {{ $appointment->section_name }} {{ $appointment->first_name . " " .$appointment->last_name }} {{ $appointment->created_at->format('Y-m-d H:m') }} @endforeach {{ $appointments->appends(request()->except('page'))->links() }} @endsection @section('vendor-script') @endsection @section('page-script') @endsection