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

    {{ $title }}

    @if($show->patient)
    {{ __('main.phone') }} : {{ $show->patient?$show->patient->phone:"N/A" }}
    @endif
    {{ __('main.location') }}: {{ $show->operation_location?$show->operation_location->name_val:"N/A" }}
    {{ __('main.appointment_date') }}: {{ $show->operation_date." ".$show->operation_time }}
    {{ __('main.created_at') }} : {{ $show->created_at }}
    {{ __('main.updated_at') }} : {{ $show->updated_at }}
    {{ __('main.notes') }}: {!! $show->notes !!}
    @endsection