@extends('layouts.master') @section('title', 'All Appointments' . $date . ' | Proxima - Medical Management app') @section('title-topbar', 'All Appointments') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @endsection @section('content')| {{ __('basic.code') }} | {{ __('basic.service') }} | {{ __('basic.name') }} | {{ __('basic.branch') }} | {{ __('basic.doctor') }} | {{ __('basic.start') }} | {{ __('basic.end') }} | {{ __('basic.status') }} | {{ __('patientappo.pay status') }} | {{ __('basic.created') }} | {{ __('basic.updated') }} | {{ __('basic.handle') }} |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->code }} | @if($item->service_item){{ $item->service_item->name }}@endif | @if($item->patient) {{ $item->patient->name }} @else Deleted Patient @endif | {{ $item->branch->name }} | @if($item->doctor) {{ $item->doctor->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 }} |
-{{ date('Y-m-d', strtotime($item->created_at)) }} @if($item->creator) -{{ $item->creator->name }} @endif |
- {{ date('Y-m-d', strtotime($item->updated_at)) }} @if($item->last_update_person) - {{ $item->last_update_person->name }} @endif |
@role('Super-admin|Branch-manager') @endrole |