@extends('layouts.admin.show') @section('title')الأيتام الموقوفين@endsection @section('content') @include('includes.admin.header' , ['label_name' => 'الأيتام الموقوفين' ])
@foreach ($data as $item) @endforeach
# ترميز الدراسة اسم الطفل اسم الام تاريخ الايقاف سبب الايقاف الإجراء
{{$item->id}} {{$item->custom_id}} {{$item->child_name}} {{$item->mother_name}} {{ date('Y-m-d', strtotime($item->date_of_suspension)) }} {{ $item->reason_for_suspension }}
@endsection