{{ $college->college_name }}

{{ $college->affiliated_by }}

{{ $college->address }}

{{--

@if (is_array($reportType) && count($reportType) > 0) @php $reportTitles = []; // Initialize an empty array to store report titles @endphp @foreach ($reportType as $type) @if ($type == 'book_issue') @php $reportTitles[] = 'Book Issue Report'; @endphp @elseif ($type == 'book_return') @php $reportTitles[] = 'Book Return Report'; @endphp @elseif ($type == 'overdue') @php $reportTitles[] = 'OverDue Report'; @endphp @endif @endforeach {{ implode(' & ', $reportTitles) }} @else @if ($reportType == 'book_issue') Book Issue Report @elseif ($reportType == 'book_return') Book Return Report @elseif ($reportType == 'overdue') OverDue Report @else {{ $reportType }} @endif @endif

--}} {{--
From Date:{{ \Carbon\Carbon::parse($fromDate)->format('d-m-Y') }}  To Date:{{ \Carbon\Carbon::parse($toDate)->format('d-m-Y') }}
--}} @if ($examsData->isEmpty())

No data found

@else @foreach ($examsData as $issue) @endforeach
Student Name Student Register Number Exam Title Total Mark Acheived Mark Result
{{ $issue->student->firstname ?? '' }} {{ $issue->student->lastname ?? '' }} {{ $issue->student->register_no ?? '' }} {{ $issue->exam->exam_title ?? '' }} {{ $issue->total_mark ?? '' }} {{ $issue->achieved_score ?? '' }} {{ $issue->result_status == 'P' ? "Passed" : "Failed" ?? '' }}
@endif