File: /home/slfopp7cb1df/public_html/inventorypacket.com/resources/views/pdf/payment_sale.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Payment_{{$payment['Ref']}}</title>
<link rel="stylesheet" href="{{asset('/css/pdf_style.css')}}" media="all" />
</head>
<body>
<header class="clearfix">
<div id="logo">
<img src="{{asset('/images/'.$setting['logo'])}}">
</div>
<div id="company">
<div><strong> Date: </strong>{{$payment['date']}}</div>
<div><strong> Number: </strong> {{$payment['Ref']}}</div>
</div>
<div id="Title-heading">
Payment : {{$payment['Ref']}}
</div>
</div>
</header>
<main>
<div id="details" class="clearfix">
<div id="client">
<table class="table-sm">
<thead>
<tr>
<th class="desc">Customer Info</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div><strong>Name:</strong> {{$payment['client_name']}}</div>
<div><strong>Phone:</strong> {{$payment['client_phone']}}</div>
<div><strong>Adress:</strong> {{$payment['client_adr']}}</div>
<div><strong>Email:</strong> {{$payment['client_email']}}</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="invoice">
<table class="table-sm">
<thead>
<tr>
<th class="desc">Company Info</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div id="comp">{{$setting['CompanyName']}}</div>
<div><strong>Adress:</strong> {{$setting['CompanyAdress']}}</div>
<div><strong>Phone:</strong> {{$setting['CompanyPhone']}}</div>
<div><strong>Email:</strong> {{$setting['email']}}</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="details_inv">
<table class="table-sm">
<thead>
<tr>
<th>Sale</th>
<th>Paid By</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{$payment['sale_Ref']}}</td>
<td>{{$payment['Reglement']}}</td>
<td>{{$symbol}} {{$payment['montant']}} </td>
</tr>
</tbody>
</table>
</div>
<div id="signature">
@if($setting['is_invoice_footer'] && $setting['invoice_footer'] !==null)
<p>{{$setting['invoice_footer']}}</p>
@endif
</div>
</main>
</body>
</html>