@extends('layouts.pdf-sample') @section('styles') @endsection @section('content')
|
{{ $company->name }}
|
Invoice
|
|
From
{{ $company->name }}
@if($company->address){{ $company->address }} @endif @if($company->email){{ $company->email }} @endif @if($company->phone){{ $company->phone }}@endif |
Bill To
{{ $sampleData['customer']['name'] }}
{{ $sampleData['customer']['address'] }} {{ $sampleData['customer']['email'] }} {{ $sampleData['customer']['phone'] }} |
|
|
| Description | Qty | Rate | Amount |
|---|---|---|---|
| {{ $item['name'] }} | {{ $item['quantity'] }} | ${{ number_format($item['price'], 2) }} | ${{ number_format($item['quantity'] * $item['price'], 2) }} |
|
Payment Information
Bank: First National Bank
Account: {{ $company->name }} Account No: XXXX-XXXX-1234 SWIFT: FNBKUS33 |
|