mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
90 lines
3.0 KiB
PHP
90 lines
3.0 KiB
PHP
@extends('layouts.base_pdf')
|
|
@section('inner_content')
|
|
<br>
|
|
<htmlpageheader name="page-header">
|
|
<br><br>
|
|
<div class="separator"><strong><i>{{ $invoice_transaction->bill_no }}</i></strong></div>
|
|
</htmlpageheader>
|
|
<table>
|
|
<tr>
|
|
<td class="header-logo">
|
|
<img src="{{ asset('images/ri_1.png') }}" alt="logo" id="logo" class="logo">
|
|
</td>
|
|
<td class="header-cief-address">
|
|
<span class="company-name">
|
|
<strong>
|
|
CIEF WORLDWIDE SDN BHD
|
|
</strong>
|
|
</span>
|
|
<span class="company-reg">(1134596-M)</span><br>
|
|
No. 72-3, Jalan Jalil 1,<br>
|
|
The Earth Bukit Jalil,<br>
|
|
57000 Kuala Lumpur<br>
|
|
Tel: 03-8082 1252
|
|
</td>
|
|
<td class="header-details">
|
|
<div class="title">
|
|
<strong>
|
|
Proforma Invoice
|
|
</strong>
|
|
</div>
|
|
|
|
<div class="number">EI#: {{ $invoice_transaction->bill_no }}</div>
|
|
|
|
|
|
<div class="ref">Ref# {{ $po_order_transaction->booking->marking }}</div>
|
|
<div class="date">Date: {{ $po_order_transaction->booking->created_at }}</div>
|
|
<div> </div>
|
|
</div>
|
|
</td>
|
|
<tr>
|
|
<td colspan="3" class="bill-to">
|
|
<span class="sub-title">
|
|
Bill To
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" class="address">
|
|
<div class="label">
|
|
{{ $supplier->name }}
|
|
</div>
|
|
<div class="address">
|
|
@php
|
|
$addresses = $supplier->addresses()->where('billing', '=', true)->first();
|
|
@endphp
|
|
{{ $addresses->street_one }}
|
|
{{ $addresses->street_two }} ,
|
|
{{ $addresses->district()->first()->name }},
|
|
{{ $addresses->postcode }}
|
|
{{ $addresses->state()->first()->name }},
|
|
{{ $addresses->country()->first()->name }}
|
|
</div>
|
|
<div>
|
|
Phone: {{ $supplier->contacts()->first()->phone }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<?php
|
|
$transaction = $invoice_transaction;
|
|
$voucher_redemption = $voucher_redemption ?? null;
|
|
?>
|
|
|
|
<!-- Invoice Table -->
|
|
@include('pages.pdfs.purchase_order_table')
|
|
|
|
<htmlpagefooter name="page-footer">
|
|
<table width="100%">
|
|
<tr>
|
|
<td style="text-align: right; ">This is generated by computer. No signature required.</td>
|
|
<td style="text-align: right; ">Page {PAGENO} of {nbpg}</td>
|
|
</tr>
|
|
</table>
|
|
</htmlpagefooter>
|
|
@endsection
|