@extends('adminlte::page') @section('content_header')

የህጻናት መዝገብ

@can('register children') አዲስ ፋይል መዝግብ @endcan @stop @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($children as $child) @endforeach
ID Photo Full Name Sex Birthdate File Number Approval Status Actions
{{ $child->id }} @if($child->photo) @else No photo @endif {{ $child->child_full_name }} {{ ucfirst($child->sex) }} {{ $child->birthdate }} {{ $child->file_number }} {{ ucfirst($child->approval_status) }} View @if($child->approval_status == 'pending'|| $child->approval_status == 'rejected')
@csrf @method('DELETE')
@endif
{{ $children->links() }} @endsection