@extends('layouts.adminapp') @section('title') {{ __('lng.BirthRegistrationReport') }} - {{ __('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_birth_registration__report', 'active') @section('content')

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

@include('PrintHeader.header')

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

@php $si=0; @endphp @foreach ($BirthRegistrations as $BirthRegistration) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.RegisterNumber') }} {{ __('lng.Name') }} {{ __('lng.FatherName') }} {{ __('lng.MotherName') }} {{ __('lng.DateOfBirth') }} {{ __('lng.DateOfPlace') }}
{{ ++$si }} {{ $BirthRegistration->register_number }} {{ $BirthRegistration->member->name ?? $BirthRegistration->name }} {{ $BirthRegistration->father->name ?? $BirthRegistration->father_name }} {{ $BirthRegistration->mother->name ?? $BirthRegistration->mother_name }} {{ $BirthRegistration->dob }} {{ $BirthRegistration->birth_place }}
{{ __('lng.Back') }}
@endsection