File: /var/www/html/punjabcabs/storage/framework/views/0c7232d18f525582d6c80b44ce2097c926b2d4ae.php
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
#invoice{
padding: 10px 20px;
}
.invoice {
position: relative;
background-color: #FFF;
min-height: 680px;
/*padding: 15px*/
}
.invoice header {
padding: 10px 0;
margin-bottom: 20px;
border-bottom: 1px solid #3989c6
}
.invoice .company-details {
text-align: right;
margin-top: -100px;
}
.invoice .company-details .name {
margin-top: 0;
margin-bottom: 0
}
.invoice .contacts {
margin-bottom: 20px
}
.invoice .invoice-to {
text-align: left
}
.invoice .invoice-to .to {
margin-top: 0;
margin-bottom: 0
}
.invoice .invoice-details {
text-align: right;
margin-top: -100px;
}
.invoice .invoice-details .invoice-id {
margin-top: 0;
color: #3989c6
}
.invoice main {
padding-bottom: 20px
}
.invoice main .thanks {
margin-top: -100px;
font-size: 1.6em;
margin-bottom: 50px
}
.invoice main .notices {
padding-left: 6px;
border-left: 6px solid #3989c6
}
.invoice main .notices .notice {
font-size: 1.2em
}
.invoice table {
width: 100%;
height: auto;
border-collapse: collapse;
border-spacing: 0;
margin-bottom: 20px
}
.invoice table td,.invoice table th {
padding: 15px 0;
background: #eee;
border-bottom: 1px solid #fff
}
.invoice table th {
white-space: nowrap;
font-weight: 400;
font-size: 18px;
background: #daa520;
text-align: center;
}
.invoice table td h3 {
margin: 0;
font-weight: 400;
color: #3989c6;
font-size: 18px;
}
.invoice table .qty,.invoice table .total,.invoice table .unit {
text-align: center;
font-size: 16px;
}
.invoice table .no {
color: #fff;
text-align: center;
/*font-size: 1.6em;*/
background: #3989c6
}
.invoice table .unit {
background: #ddd
}
.invoice table .total {
background: #3989c6;
color: #fff
}
.invoice table tbody tr:last-child td {
border: none
}
.invoice table tfoot td {
background: 0 0;
border-bottom: none;
white-space: nowrap;
text-align: right;
padding: 10px 20px;
font-size: 20px;
border-top: 1px solid #aaa
}
.invoice table tfoot tr:first-child td {
border-top: none
}
.invoice table tfoot tr:last-child td {
color: #3989c6;
font-size: 20px;
border-top: 1px solid #3989c6
}
.invoice table tfoot tr td:first-child {
border: none
}
.invoice footer {
width: 100%;
text-align: center;
color: #777;
border-top: 1px solid #aaa;
padding: 8px 0
}
@media print {
.invoice {
font-size: 11px!important;
overflow: hidden!important
}
.invoice footer {
position: absolute;
bottom: 10px;
page-break-after: always
}
.invoice>div:last-child {
page-break-before: always
}
}
</style>
<div id="invoice">
<div class="invoice overflow-auto">
<div style="min-width: 600px">
<header>
<div class="row">
<div class="col">
<a target="_blank" href="https://punjabcabs.com.au/">
<img src="<?php echo e(asset('asset/punjab-cabs.png')); ?>" data-holder-rendered="true" />
</a>
</div>
<div class="col company-details">
<h2 class="name">
<a target="_blank" href="https://punjabcabs.com.au/">
Punjab Cabs
</a>
</h2>
<div>24 Graham Rd, Clayton South 3169, Australia</div>
<div>03 95408998(AU)</div>
<div>info@punjabcabs.com.au</div>
</div>
</div>
</header>
<main>
<div class="row contacts">
<div class="col invoice-to">
<div class="text-gray-light">INVOICE TO:</div>
<h2 class="to"><?php echo e($payOut->fleetCompany); ?></h2>
<div class="address"><?php echo e($payOut->fleetName); ?></div>
<div class="email"><?php echo e($payOut->fleetEmail); ?></div>
</div>
<div class="col invoice-details">
<h1 class="invoice-id"><?php echo e($transId); ?></h1>
<div class="date">Date of Invoice: <?php echo e(date_format(date_create($payOut->created_at), 'd-m-Y')); ?></div>
</div>
</div>
<table border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th class="text-left">DC</th>
<th class="text-left">Name</th>
<th class="text-left">Taxi No.</th>
<th class="text-right">Value</th>
<th class="text-right">Levy</th>
<th class="text-right">Transaction</th>
<th class="text-right">Total</th>
<th class="text-right">Commission</th>
<th class="text-right">Payout</th>
</tr>
</thead>
<tbody>
<?php $oldType = '' ;?>
<?php $__currentLoopData = $payOutDetails; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $payOutDetail): $__env->incrementLoopIndices(); $loop = $__env->getFirstLoop(); ?>
<?php
if($oldType != $payOutDetail->payout_type){
?>
<tr style="text-align: center;">
<td colspan="9" class="unit"><?php echo e($payOutDetail->payout_type); ?></td>
</tr>
<?php
}
?>
<tr>
<td class="no"><?php echo e($payOutDetail->certificate_number); ?></td>
<td class="text-left"><h3><?php echo e($payOutDetail->providerFirstName.' '.$payOutDetail->providerLastName); ?></h3></td>
<td class="text-left"><?php echo e($payOutDetail->service_number); ?></td>
<td class="unit">$<?php echo e(number_format((float) $payOutDetail->total_value, 2, '.', '')); ?></td>
<td class="qty">$<?php echo e(number_format((float) $payOutDetail->total_sro, 2, '.', '')); ?></td>
<td class="qty">$<?php echo e(number_format((float) $payOutDetail->total_transaction_fare, 2, '.', '')); ?></td>
<td class="unit">$<?php echo e(number_format((float) $payOutDetail->total_amount, 2, '.', '')); ?></td>
<td class="qty">$<?php echo e(number_format((float) $payOutDetail->total_commission, 2, '.', '')); ?></td>
<td class="total">$<?php echo e(number_format((float) $payOutDetail->total_payout, 2, '.', '')); ?></td>
</tr>
<?php $oldType = $payOutDetail->payout_type; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getFirstLoop(); ?>
</tbody>
<tfoot>
<tr>
<td colspan="4"></td>
<td colspan="3">TOTAL</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_value, 2, '.', '')); ?></td>
</tr>
<tr>
<td colspan="4"></td>
<td colspan="3">Levy CHARGE</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_sro, 2, '.', '')); ?></td>
</tr>
<tr>
<td colspan="4"></td>
<td colspan="3">TRANSACTION FARE</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_transaction_fare, 2, '.', '')); ?></td>
</tr>
<tr>
<td colspan="4"></td>
<td colspan="3">SUBTOTAL</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_amount, 2, '.', '')); ?></td>
</tr>
<tr>
<td colspan="4"></td>
<td colspan="3">COMMISSION</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_commission, 2, '.', '')); ?></td>
</tr>
<tr>
<td colspan="4"></td>
<td colspan="3">GRAND TOTAL</td>
<td colspan="2">$<?php echo e(number_format((float) $payOut->total_payout, 2, '.', '')); ?></td>
</tr>
</tfoot>
</table>
<div class="thanks">Thank you!<br/>Punjab Cabs</div>
</main>
</div>
<div></div>
</div>
</div>