@extends('layouts.adminapp')
@section('content')
{{-- Salary Package --}}
{{ __('lng.LeaveStudentsReport') }}
@if ($SearchResult)
@php echo $SearchResult @endphp
@else
{{ __('lng.SiNo') }} |
{{__('lng.Photo')}} |
{{ __('lng.Name') }} |
{{ __('lng.Gender') }} |
{{ __('lng.HouseName') }} |
{{ __('lng.DOB') }} |
{{__('lng.Contact')}} |
{{ __('lng.Place') }} |
{{ __('lng.Narration') }} |
{{ __('lng.Action') }} |
@php $si=0; @endphp
@foreach ($Students as $Student)
@php $dob = date("F-d-Y",strtotime($Student->dob));@endphp
{{ ++$si }} |
|
{{ $Student->name }} |
{{ $Student->gender}} |
{{ $Student->housename}} |
{{ $dob }} |
{{$Student->mobile}} |
{{ $Student->place}} |
{{ $Student->narration }} |
|
@endforeach
@endif
@endsection