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

Inquiries

View Custom Inquiries @if (session('success'))
{{ session('success') }}
@endif @foreach($quotes as $quote) @endforeach
Name Email Category Arrival Date Budget Created At Actions
{{ $quote->name }} {{ $quote->email }} {{ $quote->category ? $quote->category->name : 'N/A' }} {{ $quote->arrival_date }} {{ $quote->budget }} {{ $quote->created_at->format('Y-m-d H:i') }} View
@endsection