|
@php
$companySettings = \App\Models\CompanySetting::getSettings();
@endphp
@if($companySettings && $companySettings->company_logo && \Illuminate\Support\Facades\Storage::disk('public')->exists($companySettings->company_logo))
{{ $companySettings->company_name ?? config('app.name') }}
@if($companySettings->company_address){{ $companySettings->company_address }}
@endif @if($companySettings->company_phone){{ $companySettings->company_phone }} @endif @if($companySettings->company_email){{ $companySettings->company_email }}@endif |
QUOTATION
|
| Description | Quantity | Unit Price | Tax | Total |
|---|---|---|---|---|
|
{{ $item->description }}
@if($item->notes)
{{ $item->notes }} @endif |
{{ number_format($item->quantity, 2) }} | {{ $quotation->currency ?? 'USD' }} {{ number_format($item->unit_price, 2) }} | {{ $item->tax_rate ?? 0 }}% | {{ $quotation->currency ?? 'USD' }} {{ number_format(($item->quantity * $item->unit_price) * (1 + ($item->tax_rate ?? 0) / 100), 2) }} |
| No items | ||||
|