{{-- resources/views/classes/show.blade.php --}} @extends('layouts.base') @section('content')
Grade {{ $class->grade_level }} {{ $class->section ? '- ' . $class->section : '' }}
@endif @if($class->description){{ $class->description }}
@endif| Student ID | Name | Current Laptop | Status | |
|---|---|---|---|---|
| {{ $student->student_id }} | {{ $student->full_name }} | {{ $student->email ?? '-' }} | @if($student->currentAssignment) {{ $student->currentAssignment->laptop->asset_tag }} @else - @endif | {{ $student->is_active ? 'Active' : 'Inactive' }} |
| No students in this class. | ||||
| Asset Tag | Brand/Model | Status | Current Student | Since |
|---|---|---|---|---|
| {{ $laptop->asset_tag }} | {{ $laptop->brand }} {{ $laptop->model }} | {{ ucfirst($laptop->status) }} | @if($laptop->currentAssignment) {{ $laptop->currentAssignment->student->full_name }} @else - @endif | @if($laptop->currentAssignment) {{ $laptop->currentAssignment->checked_out_at->format('M d, Y') }} @else - @endif |
| No laptops assigned to this class. | ||||