@extends('layouts.admin') @section('content')
Category: {{ $quote->category ? $quote->category->name : 'N/A' }}
Name: {{ $quote->name }}
Email: {{ $quote->email }}
Phone: {{ $quote->phone }}
Arrival Date: {{ $quote->arrival_date }}
Departure Date: {{ $quote->departure_date ?? 'N/A' }}
Guys: {{ $quote->guys }}
Girls: {{ $quote->girls }}
Pickup Type: {{ $quote->pickup_type }}
Pickup Location: {{ $quote->pickup_location ?? 'N/A' }}
Pickup Flight Number: {{ $quote->pickup_flight_number ?? 'N/A' }}
Dropoff Type: {{ $quote->dropoff_type }}
Dropoff Location: {{ $quote->dropoff_location ?? 'N/A' }}
Dropoff Flight Number: {{ $quote->dropoff_flight_number ?? 'N/A' }}
Promo Code: {{ $quote->promo ?? 'N/A' }}
Facilities: {{ $quote->facilities ? json_encode($quote->facilities) : 'N/A' }}
Additional Details: {{ $quote->additional ?? 'N/A' }}
Budget: {{ $quote->budget }}
Created At: {{ $quote->created_at->format('Y-m-d H:i') }}