@extends('layouts.adminapp') @section('title') {{ __('lng.DeathRegistration') }} @endsection @section('active_register', 'active') @section('open_register', 'open') @section('open_certificate', 'open') @section('active_certificate', 'active') @section('active_death_registration', 'active') @section('content')

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

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

{{ __('lng.Showing') }} {{ $DeathRegistrations->count() }} {{ __('lng.Items') }}

@endsection