@extends('layouts.master') @section('title', 'All Appointments | Proxima - Medical Management app') @section('title-topbar', 'All Appointments') @section('css') @endsection @section('content')
{{ __('basic.code') }} | {{ __('basic.service') }} | {{ __('basic.name') }} | {{ __('basic.branch') }} | {{ __('basic.doctor') }} | {{ __('basic.creator') }} | {{ __('basic.last update person') }} | {{ __('basic.start') }} | {{ __('basic.end') }} | {{ __('basic.status') }} | {{ __('patientappo.pay status') }} | {{ __('patientappo.pay code') }} | {{ __('basic.created') }} | {{ __('basic.updated') }} | {{ __('basic.handle') }} |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $item->code }} | {{ $item->service_item->name }} | @if($item->patient) {{ $item->patient->name }} @else Deleted Patient @endif | {{ $item->branch->name }} | @if($item->doctor) {{ $item->doctor->name }} @endif | {{ $item->creator->name }} | @if($item->last_update_person) {{ $item->last_update_person->name }} @endif |
{{ date('Y-m-d', strtotime($item->start_at)) }} {{ date('h:i a', strtotime($item->start_at)) }} |
{{ date('Y-m-d', strtotime($item->end_at)) }} {{ date('h:i a', strtotime($item->end_at)) }} |
{{ $msg }} | {{ $msg_invoice }} | @if ($item->invoice_item) {{ $item->invoice_item->invoice->code }} @endif |
-{{ date('Y-m-d', strtotime($item->created_at)) }} @if($item->creator) -{{ $item->creator->first_name . " " . $item->creator->second_name }} @endif |
-{{ date('Y-m-d', strtotime($item->updated_at)) }} @if($item->last_update_person) -{{ $item->last_update_person->first_name . " " . $item->last_update_person->second_name }} @endif |
@role('Super-admin|Branch-manager') {{ __('basic.delete') }} @endrole |