@extends('pdf') @section('content-area')

@lang('Quotations list')

@foreach ($quotations as $key => $quotation) @endforeach
@lang('#') @lang('Quotation No') @lang('Quotation Date') @lang('Client') @lang('Subtotal') @lang('Transport') @lang('Discount') @lang('Tax') @lang('Status')
{{ ++$key }} {{ config('config.quotationPrefix') . '-' . $quotation['quotation_no'] }} {{ \Carbon\Carbon::parse($quotation['quotation_date'])->format('d-M-Y') }} {{ $quotation['client']['name'] }} @currency($quotation['sub_total']) @currency($quotation['transport']) @currency($quotation['discount']) @currency($quotation['total_tax']) @if ($quotation['status']) @lang('Active') @else @lang('Inactive') @endif
@endsection