Quotation register

Search by quotation number, client, email, or status.

@forelse ($quotations as $quotation)

{{ $quotation->quotation_number }}

{{ $quotation->statusLabel() }}

{{ $quotation->client->name }} · {{ $quotation->client->email ?: 'No email' }}

@php $quotationActivity = $quotation->converted_at ? 'Converted on '.$quotation->converted_at->format('d M Y') : ($quotation->accepted_at ? 'Client accepted on '.$quotation->accepted_at->format('d M Y') : ($quotation->declined_at ? 'Client declined on '.$quotation->declined_at->format('d M Y') : ($quotation->viewed_at ? 'Client viewed on '.$quotation->viewed_at->format('d M Y') : ($quotation->sent_at ? 'Sent on '.$quotation->sent_at->format('d M Y') : null)))); @endphp

{{ $quotationActivity }}

Valid until

{{ $quotation->valid_until->format('d M Y') }}

Total

R {{ number_format($quotation->grand_total, 2) }}

@if ($quotation->public_token) @endif @can('send-quotation-emails') @if ($quotation->isEmailable())
@csrf
@endif @endcan @can('convert-quotations') @if ($quotation->isConvertible())
@csrf
@endif @endcan @can('delete-quotations')
@csrf @method('DELETE')
@endcan
@empty @endforelse
@if ($quotations->hasPages())
{{ $quotations->links() }}
@endif