@extends('dashboard/master/master') @section('title', 'الحجزات') @section('page-style') @endsection @section('content')
@include('dashboard.parts.breadcrumbs')

قائمة الحجزات

@foreach($data as $key => $value) @endforeach
# الإسم الجوال الجنس التاريخ النوع الإجراءات
{{$key + 1}} {{$value->Patient->patient_name}} {{$value->Patient->patient_phone}} @if($value->Patient->gender == 1)ذكر@elseأنثي@endif @if($value->type == 1)كشف@elseإعادة@endif {{Date::parse($value->created_at)->diffForHumans()}} @if(in_array('clinic.addstatements',json_decode(auth()->user()->Role->routes))) كشف @endif
{{csrf_field()}}
@endsection