@extends('layouts.vertical') @section('css') @endsection @section('breadcrumb')

Children

When a child is removed, TeachKloud holds it in the list of removed children for 30 days before permanently deleting it. WIthin the 30 day timeframe, you can restore the removed child. After this time period, TeachKloud will automatically delete the removed children permanently. This action cannot be undone.

@endsection @section('content')
Removed child list
@if(isset($children) && !empty($children)) @foreach($children as $child) @endforeach @endif
Children name Assigned room Gender Date of birth Deleted on
child {{ $child->name }} {{ isset($child->room) ? $child->room->name : 'N/A' }} {{ $child->gender == 0 ? "Male" : "Female" }} {{ \Carbon\Carbon::parse($child->dob)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($child->deletedAt)->format('d/m/Y') }}
@endsection @section('script-bottom') @endsection