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

Reports & Analytics

Laptop Status

Current status of all laptops

Transaction History

Check-in/out history

Class Reports

Reports by class

@foreach(\App\Models\ClassRoom::all() as $class) @endforeach

Quick Statistics

{{ \App\Models\Laptop::count() }}
Total Laptops
{{ \App\Models\Laptop::where('status', 'available')->count() }}
Available
{{ \App\Models\Laptop::where('status', 'checked_out')->count() }}
Checked Out
{{ \App\Models\Transaction::count() }}
Total Transactions
@endsection