@extends('layouts.adminapp') @section('title') {{ __('lng.DeathRegistrationReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_certificate_report_create', 'open') @section('active_certificate_report_create', 'active') @section('active_death_registration__report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.DeathRegistrationReport')}}

@php $si=0; @endphp @foreach ($DeathRegistrations as $DeathRegistration) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.RegisterNumber') }} {{ __('lng.Name') }} {{ __('lng.DateOfDeath') }} {{ __('lng.PlaceOfDeath') }}
{{ ++$si }} {{ $DeathRegistration->register_number }} {{ $DeathRegistration->DeathMember->name ?? $DeathRegistration->name }} {{ date('F-d-Y', strtotime($DeathRegistration->date_of_death)) }} {{ $DeathRegistration->place_of_death }}
{{ __('lng.Back') }}
@endsection