Surgery Management

Manage scheduled surgeries and operations

@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif
@forelse($operations as $operation) @empty @endforelse
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.
{{ $operations->links() }}
@if($showCreateModal || $showEditModal) @endif @if($showViewModal && $selectedOperation) @endif