@extends('layouts.app') @section('title', 'Indicator Analysis - NGBVD') @section('content')
Indicators

Indicator Analysis

Compare incident categories against gender, age and other survivor indicators.

@php $cards = [ ['title'=>'Gender by Incident','key'=>'gender','desc'=>'Incident category distribution by survivor gender'], ['title'=>'Religion by Incident','key'=>'religion','desc'=>'Incident category distribution by survivor religion'], ['title'=>'Time of Day by Incident','key'=>'time','desc'=>'Incident timing against incident category'], ['title'=>'Marital Status by Incident','key'=>'marital','desc'=>'Incident category distribution by marital status'], ]; @endphp @foreach($cards as $card)
{{ $card['title'] }}

{{ $card['desc'] }}

Open Analysis
@endforeach
@if(isset($heatmapData) && count($heatmapData))
@push('scripts') @endpush @endif @endsection