@extends('layouts.app') @section('content')
Quote Requests
All customer quote inquiries

@if(session('success'))
{{ session('success') }}
@endif
count() > 0) id="bookings-table" @endif class="table table-bordered align-middle text-center"> @forelse($quotes as $q) @php $qp = $q->quoteProducts->first(); $productName = $qp?->product?->name ?? '-'; $qty = $qp?->qty ?? '-'; $status = $qp?->status ?? '-'; @endphp @empty @endforelse
# User Phone Email Product Qty Status Created Action
{{ $q->id }} {{ $q->name }} {{ $q->phone }} {{ $q->email ?? '-' }} {{ $productName }} {{ $qty }} {{ $status }} {{ $q->created_at?->format('Y-m-d H:i') }}
{{-- Edit Button --}} @can('edit quotes') @endcan {{-- Delete Button --}} @can('delete quotes')
@csrf @method('DELETE')
@endcan
No quote requests found.
@endsection @push('script') @endpush