@extends('layouts.adminapp') @section('content') {{-- Member Registeration --}}

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

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

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

@endsection