@extends('layouts.app') @section('title', 'Blasting Control') @section('subtitle', 'Monitor and control blasting operations') @section('content')
Total Operations
{{ $stats['total_operations'] }}
Active
{{ $stats['active_operations'] }}
Completed
{{ $stats['completed_operations'] }}
Emergency Overrides
{{ $stats['emergency_overrides'] }}
All safety interlocks are active and monitoring
Begin a new blasting sequence
Emergency system override
Run safety system diagnostics
| Operation | Safety Officer | Supervisor | Personnel | Status | Actions |
|---|---|---|---|---|---|
|
{{ $operation->operation_code }}
{{ $operation->blast_zone }}
{{ $operation->created_at->format('M d, Y H:i') }}
|
@if($operation->safetyOfficer)
{{ $operation->safetyOfficer->initials }}
{{ $operation->safetyOfficer->full_name }}
{{ $operation->safetyOfficer->employee_id }}
|
@if($operation->supervisor)
{{ $operation->supervisor->initials }}
{{ $operation->supervisor->full_name }}
{{ $operation->supervisor->employee_id }}
|
{{ $operation->personnel_count_underground ?? 0 }}
underground
|
{{ ucfirst($operation->status) }} | |
|
No blasting operations found Start a new operation to begin monitoring. |
|||||