@extends('layouts.admin') @section('content')

Quotes

@if ($quotes->isEmpty())

No quotes available at the moment.

@else
@foreach($quotes as $quote) @endforeach
ID Name Email Category Arrival Date Actions
{{ $quote->id }} {{ $quote->name }} {{ $quote->email }} {{ $quote->category->name ?? 'N/A' }} {{ $quote->arrival_date }} View
@endif
@endsection