{{-- resources/views/reports/laptop-status.blade.php --}} @extends('layouts.base') @section('content')
| Asset Tag | Brand/Model | Status | Current User | 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 |
Report generated on {{ now()->format('F d, Y \a\t H:i') }} by {{ auth()->user()->name }}