[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: packing_slip.blade.php
<table style="width:100%; color: #000000 !important;"> <thead> <tr> <td> <p class="text-right color-555 font-30"> @lang('lang_v1.packing_slip') </p> </td> </tr> </thead> <tbody> <tr> <td> <!-- business information here --> <div class="row invoice-info"> <div class="col-md-6 invoice-col width-50 color-555"> <!-- Logo --> @if(!empty($receipt_details->logo)) <img style="max-height: 120px; width: auto;" src="{{$receipt_details->logo}}" class="img"> <br/> @endif <!-- Shop & Location Name --> @if(!empty($receipt_details->display_name)) <p> <span style="font-size:24px; font-weight:900; color:black;">{{$receipt_details->display_name}}</span> @if(!empty($receipt_details->address)) <br/>{!! $receipt_details->address !!} @endif @if(!empty($receipt_details->contact)) <br/>{!! $receipt_details->contact !!} @endif @if(!empty($receipt_details->website)) <br/>{{ $receipt_details->website }} @endif @if(!empty($receipt_details->tax_info1)) <br/>{{ $receipt_details->tax_label1 }} {{ $receipt_details->tax_info1 }} @endif @if(!empty($receipt_details->tax_info2)) <br/>{{ $receipt_details->tax_label2 }} {{ $receipt_details->tax_info2 }} @endif @if(!empty($receipt_details->location_custom_fields)) <br/>{{ $receipt_details->location_custom_fields }} @endif </p> @endif </div> <div class="col-md-6 invoice-col width-50"> <p class="text-right font-30"> @if(!empty($receipt_details->invoice_no_prefix)) <span class="pull-left">{!! $receipt_details->invoice_no_prefix !!}</span> @endif {{$receipt_details->invoice_no}} </p> <!-- Date--> @if(!empty($receipt_details->date_label)) <p class="text-right font-23 color-555"> <span class="pull-left"> {{$receipt_details->date_label}} </span> {{$receipt_details->invoice_date}} </p> @endif </div> </div> <div class="row invoice-info color-555"> <br/> <div class="col-md-6 invoice-col width-50 word-wrap"> @if(!empty($receipt_details->customer_label)) <b>{{ $receipt_details->customer_label }}</b><br/> @endif <!-- customer info --> @if(!empty($receipt_details->customer_name)) {{ $receipt_details->customer_name }}<br> @endif @if(!empty($receipt_details->customer_info)) {!! $receipt_details->customer_info !!} @endif @if(!empty($receipt_details->client_id_label)) <br/> <strong>{{ $receipt_details->client_id_label }}</strong> {{ $receipt_details->client_id }} @endif @if(!empty($receipt_details->customer_tax_label)) <br/> <strong>{{ $receipt_details->customer_tax_label }}</strong> {{ $receipt_details->customer_tax_number }} @endif @if(!empty($receipt_details->customer_custom_fields)) <br/>{!! $receipt_details->customer_custom_fields !!} @endif @if(!empty($receipt_details->sales_person_label)) <br/> <strong>{{ $receipt_details->sales_person_label }}</strong> {{ $receipt_details->sales_person }} @endif </div> <div class="col-md-6 invoice-col width-50 word-wrap"> <strong>@lang('lang_v1.shipping_address'):</strong><br> {!! $receipt_details->shipping_address !!} @if(!empty($receipt_details->shipping_custom_field_1_label)) <br><strong>{!!$receipt_details->shipping_custom_field_1_label!!} :</strong> {!!$receipt_details->shipping_custom_field_1_value ?? ''!!} @endif @if(!empty($receipt_details->shipping_custom_field_2_label)) <br><strong>{!!$receipt_details->shipping_custom_field_2_label!!}:</strong> {!!$receipt_details->shipping_custom_field_2_value ?? ''!!} @endif @if(!empty($receipt_details->shipping_custom_field_3_label)) <br><strong>{!!$receipt_details->shipping_custom_field_3_label!!}:</strong> {!!$receipt_details->shipping_custom_field_3_value ?? ''!!} @endif @if(!empty($receipt_details->shipping_custom_field_4_label)) <br><strong>{!!$receipt_details->shipping_custom_field_4_label!!}:</strong> {!!$receipt_details->shipping_custom_field_4_value ?? ''!!} @endif @if(!empty($receipt_details->shipping_custom_field_5_label)) <br><strong>{!!$receipt_details->shipping_custom_field_2_label!!}:</strong> {!!$receipt_details->shipping_custom_field_5_value ?? ''!!} @endif </div> </div> <div class="row color-555"> <div class="col-xs-12"> <br/> <table class="table table-bordered table-no-top-cell-border"> <thead> <tr style="background-color: #357ca5 !important; color: white !important; font-size: 20px !important" class="table-no-side-cell-border table-no-top-cell-border text-center"> <td style="background-color: #357ca5 !important; color: white !important; width: 5% !important">#</td> <td style="background-color: #357ca5 !important; color: white !important; width: 65% !important"> {{$receipt_details->table_product_label}} </td> <td style="background-color: #357ca5 !important; color: white !important; width: 30% !important;"> {{$receipt_details->table_qty_label}} </td> </tr> </thead> <tbody> @foreach($receipt_details->lines as $line) <tr> <td class="text-center"> {{$loop->iteration}} </td> <td style="word-break: break-all;"> {{$line['name']}} {{$line['product_variation']}} {{$line['variation']}} @if(!empty($line['sub_sku'])), {{$line['sub_sku']}} @endif @if(!empty($line['brand'])), {{$line['brand']}} @endif @if(!empty($line['product_custom_fields'])), {{$line['product_custom_fields']}} @endif @if(!empty($line['sell_line_note']))({!!$line['sell_line_note']!!}) @endif @if(!empty($line['lot_number']))<br> {{$line['lot_number_label']}}: {{$line['lot_number']}} @endif @if(!empty($line['product_expiry'])), {{$line['product_expiry_label']}}: {{$line['product_expiry']}} @endif </td> <td class="text-right"> {{$line['quantity']}} {{$line['units']}} </td> </tr> @if(!empty($line['modifiers'])) @foreach($line['modifiers'] as $modifier) <tr> <td class="text-center"> </td> <td> {{$modifier['name']}} {{$modifier['variation']}} @if(!empty($modifier['sub_sku'])), {{$modifier['sub_sku']}} @endif @if(!empty($modifier['sell_line_note']))({!!$modifier['sell_line_note']!!}) @endif </td> <td class="text-right"> {{$modifier['quantity']}} {{$modifier['units']}} </td> </tr> @endforeach @endif @endforeach @php $lines = count($receipt_details->lines); @endphp @for ($i = $lines; $i < 7; $i++) <tr> <td> </td> <td> </td> <td> </td> </tr> @endfor </tbody> </table> </div> </div> <div class="row invoice-info color-555" style="page-break-inside: avoid !important"> <div class="col-md-6 invoice-col width-50"> <b class="pull-left">@lang('lang_v1.authorized_signatory')</b> </div> </div> {{-- Barcode --}} @if($receipt_details->show_barcode) <br> <div class="row"> <div class="col-xs-12"> <img class="center-block" src="data:image/png;base64,{{DNS1D::getBarcodePNG($receipt_details->invoice_no, 'C128', 2,30,array(39, 48, 54), true)}}"> </div> </div> @endif @if(!empty($receipt_details->footer_text)) <div class="row color-555"> <div class="col-xs-12"> {!! $receipt_details->footer_text !!} </div> </div> @endif </td> </tr> </tbody> </table>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285