WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
laravel
/
cashier
/
resources
/
views
/
Name
Action
..
receipt.blade.php
Edit
Editing: receipt.blade.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Invoice</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { background: #fff; background-image: none; font-size: 12px; } address{ margin-top:15px; } h2 { font-size:28px; color:#cccccc; } .container { padding-top:30px; } .invoice-head td { padding: 0 8px; } .invoice-body{ background-color:transparent; } .logo { padding-bottom: 10px; } .table th { vertical-align: bottom; font-weight: bold; padding: 8px; line-height: 20px; text-align: left; } .table td { padding: 8px; line-height: 20px; text-align: left; vertical-align: top; border-top: 1px solid #dddddd; } .well { margin-top: 15px; } </style> </head> <body> <div class="container"> <table style="margin-left: auto; margin-right: auto" width="550"> <tr> <td width="160"> </td> <!-- Organization Name / Image --> <td align="right"> <strong>{{ $header or $vendor }}</strong> </td> </tr> <tr valign="top"> <td style="font-size:28px;color:#cccccc;"> Receipt </td> <!-- Organization Name / Date --> <td> <br><br> <strong>To:</strong> {{ $owner->email ?: $owner->name }} <br> <strong>Date:</strong> {{ $invoice->date()->toFormattedDateString() }} </td> </tr> <tr valign="top"> <!-- Organization Details --> <td style="font-size:9px;"> {{ $vendor }}<br> @if (isset($street)) {{ $street }}<br> @endif @if (isset($location)) {{ $location }}<br> @endif @if (isset($phone)) <strong>T</strong> {{ $phone }}<br> @endif @if (isset($vendorVat)) {{ $vendorVat }}<br> @endif @if (isset($url)) <a href="{{ $url }}">{{ $url }}</a> @endif </td> <td> <!-- Invoice Info --> <p> <strong>Product:</strong> {{ $product }}<br> <strong>Invoice Number:</strong> {{ $id or $invoice->id }}<br> </p> <!-- Extra / VAT Information --> @if (isset($vat)) <p> {{ $vat }} </p> @endif <br><br> <!-- Invoice Table --> <table width="100%" class="table" border="0"> <tr> <th align="left">Description</th> <th align="right">Date</th> <th align="right">Amount</th> </tr> <!-- Existing Balance --> <tr> <td>Starting Balance</td> <td> </td> <td>{{ $invoice->startingBalance() }}</td> </tr> <!-- Display The Invoice Items --> @foreach ($invoice->invoiceItems() as $item) <tr> <td colspan="2">{{ $item->description }}</td> <td>{{ $item->total() }}</td> </tr> @endforeach <!-- Display The Subscriptions --> @foreach ($invoice->subscriptions() as $subscription) <tr> <td>Subscription ({{ $subscription->quantity }})</td> <td> {{ $subscription->startDateAsCarbon()->formatLocalized('%B %e, %Y') }} - {{ $subscription->endDateAsCarbon()->formatLocalized('%B %e, %Y') }} </td> <td>{{ $subscription->total() }}</td> </tr> @endforeach <!-- Display The Discount --> @if ($invoice->hasDiscount()) <tr> @if ($invoice->discountIsPercentage()) <td>{{ $invoice->coupon() }} ({{ $invoice->percentOff() }}% Off)</td> @else <td>{{ $invoice->coupon() }} ({{ $invoice->amountOff() }} Off)</td> @endif <td> </td> <td>-{{ $invoice->discount() }}</td> </tr> @endif <!-- Display The Tax Amount --> @if ($invoice->tax_percent) <tr> <td>Tax ({{ $invoice->tax_percent }}%)</td> <td> </td> <td>{{ Laravel\Cashier\Cashier::formatAmount($invoice->tax) }}</td> </tr> @endif <!-- Display The Final Total --> <tr style="border-top:2px solid #000;"> <td> </td> <td style="text-align: right;"><strong>Total</strong></td> <td><strong>{{ $invoice->total() }}</strong></td> </tr> </table> </td> </tr> </table> </div> </body> </html>