@extends('layouts.admin') @section('title', 'Manage Quotes') @section('page_heading', 'Manage Quotes') @section('page_actions') Create Quote @endsection @section('content')
All Pending In Progress Completed
@forelse ($quotes as $quote) @empty @endforelse
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
@csrf @method('DELETE')
No quotes found.
{{ $quotes->links() }}
@endsection