{{-- resources/views/laptops/index.blade.php --}} @extends('layouts.base') @section('content')

Laptops Management

@forelse($laptops as $laptop) @empty @endforelse
Asset Tag Brand/Model Class Assigned Student Status Current User Actions
{{ $laptop->asset_tag }} {{ $laptop->brand }} {{ $laptop->model }} {{ $laptop->class->name }} @if($laptop->assigned_student_name)
{{ $laptop->assigned_student_name }}
@if($laptop->assigned_student_id)
ID: {{ $laptop->assigned_student_id }}
@endif
@else - @endif
{{ ucfirst($laptop->status) }} @if($laptop->currentAssignment) {{ $laptop->currentAssignment->student->full_name }} @else - @endif View Barcode
No laptops found.
{{ $laptops->links() }}
@endsection