@extends('layouts.head_office_app') @section('title', 'Transferred Cases') @section('content')

Transferred Cases

@if(count($cases)) @foreach($cases as $case) @endforeach
Case ID Created At Status Type Location Reporter
{{ $case->id }} {{ $case->created_at->format('d M Y h:i A') }} {{ $case->status }} {{ $case->incident_type }} {{ $case->location_name }} {{ $case->reported_by }}
@else

No cases found for this link.

@endif
@endsection