Page MenuHomePhorge

receipt.blade.php
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

receipt.blade.php

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<style>
<?php include public_path('/themes/' . config('app.theme') . '/document.css') ?>
</style>
</head>
<body>
<table id="header">
<tr>
<td>
{!! $company['header'] !!}
</td>
<td class="logo">
{!! $company['logo'] !!}
</td>
</tr>
</table>
<h1 id="title">{{ $title }}</h1>
<table id="customer" class="head">
<tr>
<td>
{!! $customer['customer'] !!}
</td>
<td class="idents">
{{--<span class="gray">{{ __('documents.account-id') }}</span> {{ $customer['wallet_id'] }}<br>--}}
<span class="gray">{{ __('documents.customer-no') }}</span> {{ $customer['id'] }}
</td>
</tr>
</table>
<table id="content" class="content">
<tr>
<th class="align-left">{{ __('documents.date') }}</th>
<th class="align-left description">{{ __('documents.description') }}</th>
<th class="price">{{ __('documents.amount') }}</th>
</tr>
@foreach ($items as $item)
<tr>
<td class="align-left">{{ $item['date'] }}</td>
<td class="align-left">{{ $item['description'] }}</td>
<td class="price">{{ $item['amount'] }}</td>
</tr>
@endforeach
@if ($vat)
<tr class="total subtotal">
<td colspan="2" class="align-right bold">{{ __('documents.subtotal') }}</td>
<td class="price bold">{{ $subTotal }}</td>
</tr>
<tr class="total vat">
<td colspan="2" class="align-right bold">{{ __('documents.vat', ['rate' => $vatRate]) }}</td>
<td class="price bold">{{ $totalVat }}</td>
</tr>
@endif
<tr class="total">
<td colspan="2" class="align-right bold">{{ __('documents.total') }}</td>
<td class="price bold">{{ $total }}</td>
</tr>
</table>
<div id="footer">{!! $company['footer'] !!}</div>
</body>
</html>

File Metadata

Mime Type
text/html
Expires
Fri, Jul 10, 12:14 AM (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1057344
Default Alt Text
receipt.blade.php (2 KB)

Event Timeline