@extends('layouts.admin') @section('title', 'Manage Quotes') @section('page_heading', 'Manage Quotes') @section('page_actions') Create Quote @endsection @section('content')
| Quote | Contact | Amount | Invoice | Status | Actions |
|---|---|---|---|---|---|
| {{ $quote->name }} |
{{ $quote->business_name }}
{{ $quote->email }}
|
{{ $quote->amount !== null ? '$'.number_format((float) $quote->amount, 2) : '-' }} |
@if ($quote->invoice)
INV #{{ $quote->invoice->id }}
@if ($quote->invoice->status === 'paid')
Paid
@else
Unpaid
@endif
@else
-
@endif
|
@if ($quote->status === 'pending') Pending @elseif ($quote->status === 'in-progress') In Progress @else Completed @endif | View Edit |
| No quotes found. | |||||