1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/pdf/stub.blade.php
David Bomba d13ab48d86
Refactor Designs (#3449)
* Refactor custom invoice HTML generation

* remove table_styles() method from designs

* Refactor designs

* Clean up designs
2020-03-07 17:31:26 +11:00

23 lines
236 B
PHP

<!DOCTYPE html>
<html lang="{!! $lang !!}">
{!! $includes !!}
<body>
{!! $header !!}
{!! $body !!}
@if($product)
{!! $product !!}
@endif
@if($task)
{!! $task !!}
@endif
{!! $footer !!}
</body>
</html>