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

{{$school->name}}

@endsection @section('content')
School details
{{$school->owner->firstName}} {{$school->owner->lastName}}
{{ $school->operation == 0 ? 'Private' : 'Community' }}
{{$school->phone}}
{{isset($school->category) ? $school->category->name : '-'}}
{{$school->address}}
{{isset($school->country) ? $school->country->name : '-'}}
{{isset($school->state) ? $school->state->name : '-'}}
{{$school->city}}
{{$school->postalCode}}
{{\Carbon\Carbon::parse($school->createdAt)->format('d/m/Y')}}
{{isset($school->activeChilds) ? $school->activeChilds : 0}}
Total number of active children
{{isset($school->archivedChilds) ? $school->archivedChilds : 0}}
Total number of archived children
{{$school->dailyRecords}}
Total number of daily records
{{$school->stories}}
Total number of learning stories
{{$school->attendance}}
Total hours of attendance
Name Email Role Status Joining Date App installed Credentials Action
Children name Assigned room Gender Date of birth Teacher name Parent name Added Date Action
@endsection @section('script-bottom') @endsection