@if ($quotation->status == 'APPROVED')
Your Quotation has been Approved
|
@elseif ($quotation->status == 'REJECTED')
Your Quotation has been Declined
|
@elseif ($quotation->status == 'MORE_INFO')
Your Quotation requires More Information
|
@elseif ($quotation->status == 'HOLDING_POOL')
Your Quotation has been Placed in the Holding Pool
|
@endif
{{--
PLEASE DO NOT REPLY TO THIS EMAIL AS IT IS NOT MONITORED
|
--}}
Quotation Id |
{{ $quotation->id }} |
Quotation Ref |
Q{{ $quotation->jobId }} |
Work Schedule |
{{ $quotation->workDetail }} |
Quotation Value |
{{ $quotation->quotationTotal }} |
@if (!empty($reason))
Comments |
{!! nl2br($reason) !!} |
@endif
@if (!empty($quotation->reviewDate))
Review date |
{{ $quotation->reviewDate }} |
@endif
|
|
|
@endsection