@extends('layouts.adminapp') @section('content')
Date Range: {{ date('d-m-Y', strtotime($FromDate)) }} to {{ date('d-m-Y', strtotime($ToDate)) }}
@endif{{ $Batch->title ?? '' }}
@if ($Student) {{ $Student->name ?? '' }} @else {{ \App\Models\Student::where('admission_no', $StudentID)->value('name') ?? '' }} @endif
| {{$Student->name}} | Admission No. {{$Student->admission_no}} |
| Batch: {{$CompletedBatchCourse->batchcourse->course->title}} [{{$CompletedBatchCourse->batchcourse->batch->title}}] |
Cousre: {{$CompletedBatchCourse->courseperiod->title}} Report Type: Individual Report |
| {{ __('lng.SiNo') }} | {{ __('lng.AdmissionNo') }} | {{ __('lng.Name') }} | {{ __('lng.Date') }} | {{ __('lng.InTime') }} | {{ __('lng.OutTime') }} |
|---|---|---|---|---|---|
| {{ ++$si }} | {{ $Student->admission_no ?? '' }} | {{ $Student->name ?? '' }} | @if ($StudentAttendance->AttendanceDate) {{ date_format(date_create($StudentAttendance->AttendanceDate), 'd-m-Y') }} @endif | {{ $StudentAttendance->InTime }} | {{ $StudentAttendance->OutTime }} |