@extends('admin.layout.index') @section('content')
| Appointment # | Staff | Referral | Appointment Date | Booking Date | Service | Amount | Status | ||
|---|---|---|---|---|---|---|---|---|---|
| #{{$service->appointment}} |
{{DB::table('users')->where('id',$service->doctor_id)->value('name')}} |
Download | {{ date('d-M-Y', strtotime($service->appointment_date ))}} {{$service->appointment_time}} | {{ date('d-M-Y', strtotime($service->created_at ))}} | {{DB::table('our_services')->where('id',$service->service)->value('name')}} | GHC{{DB::table('our_services')->where('id',$service->service)->value('price')}} | @if($service->status == 'completed'){{$service->status}} | @elseif($service->status =='scheduled'){{$service->status}} | @else{{$service->status}} | @endif
| ID | Date | Description | Attachment | Created | |
|---|---|---|---|---|---|
| #{{$lab->appointment}} | 14 Nov 2019 | {{DB::table('our_services')->where('id',$lab->service)->value('name')}} | Attached |
{{DB::table('users')->where('id',$lab->doctor_id)->value('name')}} |
| Invoice No | Services | Amount | |
|---|---|---|---|
| #INV-{{ $item['appointment'] }} | @foreach ($item['services'] as $service)
|
Ghc{{ $item['total_service_price'] }} |