@extends('layouts.adminapp') @section('content')
@include('PrintHeader.header')

{{$Class->title}} - {{__('lng.StudentReport')}}

@php $si=0; @endphp @foreach ($Students as $Student) @php $dob = date("m-d-Y",strtotime($Student->dob));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Photo')}} {{__('lng.Name')}} {{__('lng.BatchYear')}} {{__('lng.DOB')}} {{__('lng.Contact')}} {{__('lng.HouseName')}} {{__('lng.Guardian')}} {{__('lng.Gender')}} {{__('lng.Place')}}
{{++$si}} {{$Student->name}} {{$Student->batch_year}} {{$dob}} {{$Student->mobile}} {{$Student->housename}} {{$Student->guardian}} {{$Student->gender}} {{$Student->place}}
{{__('lng.Back')}}
@endsection