@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'] }}

Date: {{ $sampleData['date'] }}
Valid Until: {{ $sampleData['valid_until'] }}
Project: {{ $sampleData['project_name'] }}
Prepared By: {{ $sampleData['prepared_by'] }}
Services & Products
@foreach($sampleData['services'] as $index => $service) @endforeach
# 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) }}
This quotation is valid for 30 days from the date of issue.
Prices are subject to change after the validity period.
Terms & Conditions
  1. Payment terms: 50% advance, 50% upon completion.
  2. Delivery timeline will be confirmed upon order confirmation.
  3. Prices are exclusive of any additional taxes unless otherwise stated.
  4. Any changes to the scope of work may result in additional charges.
  5. This quotation is subject to our standard terms and conditions.
Acceptance

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') }}

@endsection