@extends('layouts.admin') @section('title', 'Inventory Monitoring') @section('page_title', 'Inventory Monitoring') @section('content')
| Rental | Vehicle | Total | Reserved | Available | Last Checked By | Notes |
|---|---|---|---|---|---|---|
| {{ $inv->rentalCompany->company_name ?? '-' }} | {{ $inv->vehicle->name ?? '-' }} | {{ $inv->total }} | {{ $inv->reserved }} | {{ $inv->available }} | {{ $inv->lastCheckedBy->name ?? '-' }} | {{ Illuminate\Support\Str::limit($inv->notes, 80) }} |
| No inventories found. | ||||||