No activity
Created At
{{ date('D jS F Y', strtotime($first_case->created_at)) }}
@extends('layouts.head_office_app') @section('title', 'Head office Settings') @section('sidebar') @php $statusCount = $cases ->filter(function ($record) { return isset($record->recorded_case) && $record->recorded_case !== null; }) ->groupBy(function ($record) { return $record->recorded_case->status ?? 'unknown'; // Ensure status exists }) ->map(function ($group) { return $group->count(); }); $incident_types = $cases->filter(function ($record) { return isset($record->recorded_case) && !empty($record->recorded_case->incident_type); }) ->groupBy(function ($record) { return $record->recorded_case->incident_type ?? 'Unknown'; }) ->map(function($group) { return $group->count(); }); @endphp
@endsection @section('sub-header') @endsection @section('content'){{ date('D jS F Y', strtotime($first_case->created_at)) }}