@extends('layouts.adminapp') @section('content')

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

Batch: {{ $Batch->title ?? 'All' }}
{{-- --}}
{{$Student->name}} Admission No. {{$Student->admission_no}}
Batch: {{$CompletedBatchCourse->batchcourse->course->title}} [{{$CompletedBatchCourse->batchcourse->batch->title}}]

Cousre: {{$CompletedBatchCourse->courseperiod->title}}

Report Type: Individual Report

@php $si=0; @endphp @foreach ($Students as $Student) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.AdmissionNo') }} {{ __('lng.Name') }} {{ __('lng.Date') }} {{ __('lng.InTime') }} {{ __('lng.OutTime') }}
{{ ++$si }} {{ $Student->AdmissionNo }} {{ $Student->Name }} @if ($Student->Date) {{ date_format(date_create($Student->Date), 'd-m-Y') }} @endif {{ $Student->In }} {{ $Student->Out }}
{{-- --}}
{{-- --}} @endsection