@extends('layouts.app') @section('title', 'Safety Reports') @section('subtitle', 'Blasting operations and safety compliance analytics') @section('content')

Safety Reports

Monitor blasting operations and safety compliance metrics

Total Operations

{{ number_format($stats['total_operations']) }}

Pending

{{ number_format($stats['pending_operations']) }}

Approved

{{ number_format($stats['approved_operations']) }}

Executed

{{ number_format($stats['executed_operations']) }}

Filters

Blasting Operations

@if($blastingOperations->count() > 0)
@foreach($blastingOperations as $operation) @endforeach
Operation Location Status Creator Approvals Created
{{ $operation->operation_code }}
{{ $operation->blast_zone }}
{{ $operation->blast_zone }}
Zone: {{ $operation->blast_zone }}
{{ ucfirst($operation->status) }}
{{ substr($operation->safetyOfficer->first_name, 0, 1) }}
{{ $operation->safetyOfficer->full_name }}
@if($operation->approvals->count() > 0) @foreach($operation->approvals as $approval)
@endforeach @else No approvals @endif
{{ $operation->created_at->format('M d, Y') }}
{{ $blastingOperations->links() }}
@else

No blasting operations found

Try adjusting your filters or check back later.

@endif
@endsection