Manage scheduled surgeries and operations
| Operation # | Patient | Procedure | Surgeon | Room | Scheduled | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $operation->operation_number }}
|
{{ ucwords(strtolower($operation->patient->full_name)) }}
{{ $operation->patient->patient_id }}
|
{{ $operation->procedure_name }}
{{ $operation->surgery_type }}
|
{{ ucwords(strtolower($operation->surgeon->name)) }}
|
@if($operation->operationRoom)
{{ $operation->operationRoom->room_number }}
{{ ucwords(strtolower($operation->operationRoom->name)) }}
@else
Not assigned
@endif
|
{{ $operation->scheduled_date->format('M d, Y') }}
{{ \Carbon\Carbon::parse($operation->scheduled_time)->format('h:i A') }}
|
{{ $operation->status_label }} |
@if($operation->canStart())
@endif
@if($operation->canComplete())
@endif
@if(in_array($operation->status, [\App\Models\Operation::STATUS_SCHEDULED, \App\Models\Operation::STATUS_PREPARING]))
@endif
|
| No surgeries found. | |||||||
{{ $selectedOperation->operation_number }}
{{ ucwords(strtolower($selectedOperation->patient->full_name)) }} ({{ $selectedOperation->patient->patient_id }})
{{ $selectedOperation->procedure_name }}
{{ $selectedOperation->surgery_type }}
{{ ucwords(strtolower($selectedOperation->surgeon->name)) }}
@if($selectedOperation->operationRoom) {{ $selectedOperation->operationRoom->room_number }} - {{ ucwords(strtolower($selectedOperation->operationRoom->name)) }} @else Not assigned @endif
{{ $selectedOperation->scheduled_date->format('M d, Y') }}
{{ \Carbon\Carbon::parse($selectedOperation->scheduled_time)->format('h:i A') }}
{{ $selectedOperation->estimated_duration }} minutes
{{ $selectedOperation->diagnosis }}
{{ $selectedOperation->indication }}
{{ $selectedOperation->pre_operative_notes }}
{{ $selectedOperation->operative_notes }}
{{ $selectedOperation->post_operative_notes }}
{{ $selectedOperation->complications }}
{{ $selectedOperation->notes }}