@extends('layouts.pdf-sample') @section('styles') @endsection @section('content')
PURCHASE ORDER
PO# {{ $sampleData['po_number'] }}
{{ $company->name }}
@if($company->address){{ $company->address }}@endif
Vendor
{{ $sampleData['vendor']['name'] }}
{{ $sampleData['vendor']['address'] }}
Phone: {{ $sampleData['vendor']['phone'] }}
Email: {{ $sampleData['vendor']['email'] }}
Ship To
{{ $company->name }}
@if($company->address){{ $company->address }}
@endif @if($company->phone)Phone: {{ $company->phone }}
@endif @if($company->email)Email: {{ $company->email }}@endif
PO Date: {{ $sampleData['date'] }} Required By: {{ $sampleData['required_date'] }}
Payment: {{ $sampleData['payment_terms'] }} Shipping: {{ $sampleData['shipping_method'] }}
@foreach($sampleData['items'] as $index => $item) @endforeach
# Item Description Qty Unit Price Total
{{ $index + 1 }} {{ $item['name'] }} {{ $item['quantity'] }} ${{ number_format($item['price'], 2) }} ${{ number_format($item['quantity'] * $item['price'], 2) }}

Terms & Conditions

  1. Please include PO number on all invoices and correspondence.
  2. Deliver goods as per specifications mentioned above.
  3. Any deviation from the order must be approved in writing.
  4. Invoice will be processed after goods receipt verification.
Subtotal ${{ number_format($sampleData['subtotal'], 2) }}
Shipping ${{ number_format($sampleData['shipping'], 2) }}
Tax ({{ $sampleData['tax_percent'] }}%) ${{ number_format($sampleData['tax'], 2) }}
Grand Total ${{ number_format($sampleData['total'], 2) }}
Authorized Signature
Date
@endsection