@extends('layouts.admin') @section('title', 'Inventory Monitoring') @section('page_title', 'Inventory Monitoring') @section('content')
filled('low_stock')) checked @endif onchange="this.form.submit()">
@forelse($inventories as $inv) available <= 0) style="background:#fff1f0;" @elseif($inv->available <= 2) style="background:#fffbeb;" @endif> @empty @endforelse
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.
{{ $inventories->links() }}
@endsection