@extends('layouts.app') @section('title', 'Profiled Cases - NGBVD') @section('content')

Profiled Cases

Search, review and open survivor profiles captured in the system.

Reset Offline Import
Case Register
Showing {{ $victims->count() }} of {{ method_exists($victims, 'total') ? number_format($victims->total()) : $victims->count() }} records
@forelse ($victims as $victim) @empty @endforelse
# Interview Date Survivor Code Gender Age Nationality National Status District Sub-County Parish Referred Created By User Role Action
{{ $loop->iteration + (($victims->currentPage() - 1) * $victims->perPage()) }} {{ $victim->interview_date }} {{ $victim->survivor_code ?: $victim->crb_number }} {{ $victim->genderValue }} {{ $victim->dob == '0000-00-00' ? '' : $victim->dob }} {{ $victim->nationality }} {{ $victim->national_status }} {{ $victim->district }} {{ $victim->subbcounty }} {{ $victim->parish }} @if(!in_array($victim->refered, [1, 0]) || (int)$victim->refered === 0) No @else Yes @endif {{ $victim->created_by }}
{{ $victim->email }}
{{ $victim->urole }} Edit
No profiled cases found for the selected filter.
{{ $victims->appends(request()->query())->links('vendor.pagination.bootstrap-4', ['class' => 'custom-pagination']) }}
@endsection @push('scripts') @endpush