{{ __('main.name') }} :
{{ $show->name_val }}
{{ __('main.address') }} :
{{ $show->address_val }}
{{ __('main.whats') }} :
{{ $show->whats??"N/A" }}
{{ __('main.mobile') }}:
{{ $show->mobile??"N/A" }}
{{ __('main.description') }} :
{{ $show->description_val }}
{{ __("main.working_days") }}:
{{ __("main.patient_types") }} {{ __("main.price") }}:
#
|
{{trans('main.day')}}
|
{{trans('main.from_time')}}
|
{{trans('main.to_time')}}
|
@forelse($show->workingDays as$key=>$working_day)
{{++$key}}
|
{{trans('main.'.$working_day->day)}}
|
{{$working_day->from_time}}
|
{{$working_day->to_time}}
|
@empty
{{trans('main.no_data_added')}}
|
@endforelse
#
|
{{trans('main.patient_type')}}
|
{{trans('main.price')}}
|
@forelse($show->patientTypes as$key=>$patient_type)
{{++$key}}
|
{{$patient_type->name_val}}
|
{{$patient_type->pivot?$patient_type->pivot->price." LE":"N/A"}}
|
@empty
{{trans('main.no_data_added')}}
|
@endforelse