mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
114 lines
3.6 KiB
PHP
114 lines
3.6 KiB
PHP
@extends('layouts.base_pdf')
|
|
@section('inner_content')
|
|
<br>
|
|
<htmlpageheader name="page-header">
|
|
<br><br>
|
|
<div class="separator"><strong><i>{{ $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>
|
|
{{ $transaction->type == 9 ? 'Credit' : 'Debit' }} Note
|
|
</strong>
|
|
</div>
|
|
|
|
<div class="date">Date: {{ $transaction->created_at }}</div>
|
|
<div> </div>
|
|
</div>
|
|
</td>
|
|
<tr>
|
|
<td colspan="3" class="bill-to">
|
|
<span class="sub-title">
|
|
{{ $transaction->type == 9 ? 'Credit' : 'Debit' }} To
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" class="address">
|
|
<div class="label">
|
|
{{ $supplier->name }}
|
|
</div>
|
|
<div class="address">
|
|
@php
|
|
$addresses = $supplier->addresses()->where('type', 1)->first();
|
|
@endphp
|
|
|
|
@if($addresses)
|
|
{{ $addresses->street_one }}
|
|
{{ $addresses->street_two }} ,
|
|
{{ $addresses->district()->first()->name }},
|
|
{{ $addresses->postcode }}
|
|
{{ $addresses->state()->first()->name }},
|
|
{{ $addresses->country()->first()->name }}
|
|
@endif
|
|
</div>
|
|
<div>
|
|
@php
|
|
$contact = $supplier->contacts()->first();
|
|
@endphp
|
|
Phone: {{ $contact ? $contact->phone : '' }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<br>
|
|
<table class="line-table" style="overflow: wrap" autosize="1">
|
|
<thead>
|
|
<tr>
|
|
<th width="5%">No</th>
|
|
<th class="description">Description</th>
|
|
<th width="10%">Quantity</th>
|
|
<th width="15%">Unit Price (RM)</th>
|
|
<th width="10%">Total Amount<br>(RM)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" class="center top">1</td>
|
|
<td class="description">{{ ucfirst($transaction->payment_reference) }}</td>
|
|
<td width="10%" class="center top">1</td>
|
|
<td width="15%" class="center top">
|
|
{{ number_format($transaction->amount, 2) }}
|
|
</td>
|
|
<td width="20%" class="right top">
|
|
{{ number_format($transaction->amount, 2) }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="3"></td>
|
|
<td class="right middle">Total</td>
|
|
<td class="total right middle">
|
|
{{ number_format($transaction->amount, 2) }}
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</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 |