@extends('layouts.adminapp')
@section('content')
{{-- Day Book --}}
@if ($SearchResult)
@php echo $SearchResult @endphp
@else
{{__('lng.SiNo')}} |
{{__('lng.Photo')}} |
{{__('lng.Name')}} |
{{__('lng.Class')}} |
{{__('lng.BatchYear')}} |
{{__('lng.DOB')}} |
{{__('lng.Contact')}} |
{{__('lng.HouseName')}} |
{{__('lng.Guardian')}} |
{{__('lng.Gender')}} |
{{__('lng.Place')}} |
{{__('lng.Action')}} |
@php $i=0;@endphp
@foreach ($Students as $Student)
@php $dob = date("m-d-Y",strtotime($Student->dob));@endphp
{{++$i}} |
|
{{$Student->name}} |
{{$Student->class->title ?? __('lng.PassOut')}} |
{{$Student->batch_year}} |
{{$dob}} |
{{$Student->mobile}} |
{{$Student->housename}} |
{{$Student->guardian}} |
{{$Student->gender}} |
{{$Student->place}} |
|
{{-- --}}
|
@endforeach
@endif
@endsection