@extends('layouts.pdf-sample') @section('styles') @endsection @section('content')
|
Quotation
Reference: QT-{{ $sampleData['quotation_number'] }}
|
|
|
From
{{ $company->name }} @if($company->address){{ $company->address }} @endif @if($company->phone)Phone: {{ $company->phone }} @endif @if($company->email)Email: {{ $company->email }} @endif |
To
{{ $sampleData['customer']['name'] }} {{ $sampleData['customer']['company'] }} {{ $sampleData['customer']['address'] }} Phone: {{ $sampleData['customer']['phone'] }} Email: {{ $sampleData['customer']['email'] }} |
|
|
| # | Description | Qty | Rate | Amount |
|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $service['name'] }}
@if(isset($service['description']))
{{ $service['description'] }} @endif |
{{ $service['quantity'] }} | ${{ number_format($service['rate'], 2) }} | ${{ number_format($service['quantity'] * $service['rate'], 2) }} |
| Subtotal: | ${{ number_format($sampleData['subtotal'], 2) }} |
| Discount ({{ $sampleData['discount_percent'] }}%): | -${{ number_format($sampleData['discount'], 2) }} |
| Tax ({{ $sampleData['tax_percent'] }}%): | ${{ number_format($sampleData['tax'], 2) }} |
| Total: | ${{ number_format($sampleData['total'], 2) }} |
I/We accept the above quotation and agree to the terms and conditions stated.
|
Customer Signature & Date
|
Authorized Signature
|
Generated on: {{ now()->format('F d, Y - h:i A') }}