@extends('layouts.adminapp') @section('title') {{ __('lng.LeaveStudentsReport') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_student_report', 'open') @section('active_student_report', 'active') @section('active_student_leave_report', 'active') @section('content')

{{ __('lng.Print') }}

@include('PrintHeader.header')

{{__('lng.PassOutStudentsReport')}}

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