{{-- resources/views/reports/class-report.blade.php --}} @extends('layouts.base') @section('content')
Grade {{ $class->grade_level }} {{ $class->section ? '- ' . $class->section : '' }}
@endif| Asset Tag | Brand/Model | Status | Current Student | Checked Out | Serial Number |
|---|---|---|---|---|---|
| {{ $laptop->asset_tag }} | {{ $laptop->brand }} {{ $laptop->model }} | {{ ucfirst($laptop->status) }} |
@if($laptop->currentAssignment)
{{ $laptop->currentAssignment->student->full_name }}
{{ $laptop->currentAssignment->student->student_id }} @else - @endif |
@if($laptop->currentAssignment) {{ $laptop->currentAssignment->checked_out_at->format('M d, Y H:i') }} @else - @endif | {{ $laptop->serial_number }} |
| No laptops assigned to this class. | |||||
| Student ID | Name | |
|---|---|---|
| {{ $student->student_id }} | {{ $student->full_name }} | {{ $student->email ?? '-' }} |
| All students have laptops assigned. | ||
Report generated on {{ now()->format('F d, Y \a\t H:i') }} by {{ auth()->user()->name }}
Class: {{ $class->name }} | Total Students: {{ $class->students()->count() }} | Total Laptops: {{ $laptops->count() }}