@extends('backend.layout.app') @section('sub_header') @component('backend.layout.components.sub-header') @slot('title') {{ $title }} @endslot {{ __('main.clinics') }} @slot('toolbar')
  • {{ __('main.edit') }} {{ __('main.clinic') }}
  • {{ __('main.show-all') }} {{ __('main.clinics') }}
  • {{ __('main.add_new') }} {{ __('main.clinic') }}
  • @endslot @endcomponent @endsection @section('content')

    {{ $title }}

    {{ __('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") }}:
    @forelse($show->workingDays as$key=>$working_day) @empty @endforelse
    # {{trans('main.day')}} {{trans('main.from_time')}} {{trans('main.to_time')}}
    {{++$key}} {{trans('main.'.$working_day->day)}} {{$working_day->from_time}} {{$working_day->to_time}}
    {{trans('main.no_data_added')}}
    @forelse($show->patientTypes as$key=>$patient_type) @empty @endforelse
    # {{trans('main.patient_type')}} {{trans('main.price')}}
    {{++$key}} {{$patient_type->name_val}} {{$patient_type->pivot?$patient_type->pivot->price." LE":"N/A"}}
    {{trans('main.no_data_added')}}
    @endsection