@extends('admin.layouts') @section('title', 'User Management') @section('header') @endsection @section('content')

Quotation History


@if ($quotations->isEmpty()) @else @foreach ($quotations as $index => $quotation) @endforeach @endif
SN0 ORDER ID NAME USER ID PHONE No DATE MEMBERSHIP AMOUNT STATUS ACTION
No quotation records found.
{{ $index + 1 }} {{ $quotation->order_id ?? 'N/A' }} {{ $quotation->customer_details['name'] ?? 'N/A' }} {{ $quotation->user_id ?? 'N/A' }} {{ $quotation->customer_details['phone_number'] ?? 'N/A' }} {{ $quotation->created_at->format('Y-m-d') }} {{ $quotation->customer_details['membership'] ?? 'N/A' }} {{ number_format($quotation->total_amount, 2) }} @if ($quotation->is_billed === 'completed') Billed @else Pending @endif View Invoice Edit @if ($quotation->is_billed === 'completed') @else Convert Bill @endif
@endsection @section('footer') @endsection