Skip to content

Instantly share code, notes, and snippets.

@alfredoem
Created November 3, 2015 19:17
Show Gist options
  • Select an option

  • Save alfredoem/c7a6fbcba33c57948132 to your computer and use it in GitHub Desktop.

Select an option

Save alfredoem/c7a6fbcba33c57948132 to your computer and use it in GitHub Desktop.
Template for a invoice render with DomPDF
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Aloha!</title>
<style type="text/css">
* {
font-family: Verdana, Arial, sans-serif;
}
table{
font-size: x-small;
}
tfoot tr td{
font-weight: bold;
font-size: x-small;
}
.gray {
background-color: lightgray
}
</style>
</head>
<body>
<table width="100%">
<tr>
<td valign="top"><img src="{{asset('images/meteor-logo.png')}}" alt="" width="150"/></td>
<td align="right">
<h3>Shinra Electric power company</h3>
<pre>
Company representative name
Company address
Tax ID
phone
fax
</pre>
</td>
</tr>
</table>
<table width="100%">
<tr>
<td><strong>From:</strong> Linblum - Barrio teatral</td>
<td><strong>To:</strong> Linblum - Barrio Comercial</td>
</tr>
</table>
<br/>
<table width="100%">
<thead style="background-color: lightgray;">
<tr>
<th>#</th>
<th>Description</th>
<th>Quantity</th>
<th>Unit Price $</th>
<th>Total $</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Playstation IV - Black</td>
<td align="right">1</td>
<td align="right">1400.00</td>
<td align="right">1400.00</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Metal Gear Solid - Phantom</td>
<td align="right">1</td>
<td align="right">105.00</td>
<td align="right">105.00</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Final Fantasy XV - Game</td>
<td align="right">1</td>
<td align="right">130.00</td>
<td align="right">130.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"></td>
<td align="right">Subtotal $</td>
<td align="right">1635.00</td>
</tr>
<tr>
<td colspan="3"></td>
<td align="right">Tax $</td>
<td align="right">294.3</td>
</tr>
<tr>
<td colspan="3"></td>
<td align="right">Total $</td>
<td align="right" class="gray">$ 1929.3</td>
</tr>
</tfoot>
</table>
</body>
</html>
@ereeshika
Copy link
Copy Markdown

Best one found so far. Keep up the good work :)

@dragipostolovski
Copy link
Copy Markdown

Thanks.

@Shashi99rocky
Copy link
Copy Markdown

thanks

@AndikaR
Copy link
Copy Markdown

AndikaR commented May 17, 2019

Thanks for sharing!

@juli1403
Copy link
Copy Markdown

juli1403 commented Jul 3, 2019

Thx

@rexlManu
Copy link
Copy Markdown

Thx

@tumelo-mapheto
Copy link
Copy Markdown

Thanks for sharing.

@ZameelAmjed
Copy link
Copy Markdown

Thanks

@salhi197
Copy link
Copy Markdown

thanks :)

@juliomrafael
Copy link
Copy Markdown

good🤚

@inkomomutane
Copy link
Copy Markdown

thanks

@vittosheva
Copy link
Copy Markdown

Thanks, it's worth a lot

@awaisyousuf29
Copy link
Copy Markdown

it takes alot of time to load why?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment