2020-02-17 19:05:11 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Designs;
|
|
|
|
|
2020-02-19 22:46:31 +01:00
|
|
|
class Playful extends AbstractDesign
|
2020-02-17 19:05:11 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
public function includes()
|
2020-03-04 12:09:43 +01:00
|
|
|
{
|
|
|
|
return '
|
2020-03-16 11:12:10 +01:00
|
|
|
<head>
|
|
|
|
<title>$number</title>
|
2020-03-04 12:09:43 +01:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
2020-03-16 11:12:10 +01:00
|
|
|
<link href="$app_url/css/tailwind-1.2.0.css" rel="stylesheet">
|
2020-02-26 04:20:12 +01:00
|
|
|
<style>
|
2020-03-11 21:30:49 +01:00
|
|
|
body {font-size:90%}
|
|
|
|
@page
|
|
|
|
{
|
2020-02-26 04:20:12 +01:00
|
|
|
size: auto;
|
|
|
|
margin-top: 5mm;
|
2020-03-11 21:30:49 +01:00
|
|
|
}
|
|
|
|
.table_header_thead_class { text-align: left; background-color: #319795; border-radius: .5rem; }
|
|
|
|
.table_header_td_class { padding: .75rem 1rem; font-weight: 600; }
|
|
|
|
.table_body_td_class { padding: 1rem; border-bottom-width: 4px; border-style: dashed; border-color: #319795 }
|
2020-02-26 04:20:12 +01:00
|
|
|
</style>
|
2020-03-11 21:30:49 +01:00
|
|
|
</head>
|
2020-03-04 12:09:43 +01:00
|
|
|
';
|
|
|
|
}
|
2020-03-11 21:30:49 +01:00
|
|
|
|
2020-02-17 19:05:11 +01:00
|
|
|
|
2020-03-04 12:09:43 +01:00
|
|
|
public function header() {
|
|
|
|
|
|
|
|
return '
|
2020-02-19 22:46:31 +01:00
|
|
|
<div class="my-12 mx-16">
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
<div class="w-1/2">
|
2020-02-17 19:05:11 +01:00
|
|
|
$company_logo
|
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
<div class="bg-teal-600 p-5">
|
|
|
|
<div class="flex">
|
|
|
|
<div class="flex justify-between text-white flex-col mr-8">
|
|
|
|
$entity_labels
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col text-right text-white">
|
|
|
|
$entity_details
|
2020-02-19 22:46:31 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>';
|
2020-02-17 19:05:11 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function body() {
|
|
|
|
|
|
|
|
return '
|
2020-03-16 11:12:10 +01:00
|
|
|
<div class="flex mt-16">
|
|
|
|
<div class="w-1/2">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p class="font-semibold text-teal-600 pl-4">$entity_label</p>
|
|
|
|
<div class="flex border-dashed border-t-4 border-b-4 border-teal-600 py-4 mt-4 pl-4">
|
|
|
|
<section class="flex flex-col">
|
|
|
|
$client_details
|
|
|
|
</section>
|
|
|
|
</div>
|
2020-02-19 22:46:31 +01:00
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>
|
2020-03-16 11:12:10 +01:00
|
|
|
<div class="w-1/2 ml-24">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p class="font-semibold text-teal-600 pl-4">$from_label:</p>
|
|
|
|
<div class="flex border-dashed border-t-4 border-b-4 border-teal-600 py-4 mt-4 pl-4">
|
|
|
|
<section class="flex flex-col">
|
|
|
|
$company_details
|
|
|
|
</section>
|
|
|
|
</div>
|
2020-02-17 19:05:11 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>
|
2020-03-16 11:12:10 +01:00
|
|
|
<table class="w-full table-auto mt-20 mb-8">
|
|
|
|
<thead class="text-left bg-teal-600 rounded-lg">
|
|
|
|
$product_table_header
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
$product_table_body
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<table class="w-full table-auto mt-20 mb-8">
|
|
|
|
<thead class="text-left bg-teal-600 rounded-lg">
|
|
|
|
$task_table_header
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
$task_table_body
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
';
|
2020-02-17 19:05:11 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-07 07:31:26 +01:00
|
|
|
public function task() {
|
2020-03-16 11:12:10 +01:00
|
|
|
return '';
|
2020-03-11 21:30:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function product()
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function footer() {
|
2020-02-26 04:20:12 +01:00
|
|
|
|
2020-03-11 21:30:49 +01:00
|
|
|
return '
|
|
|
|
<div class="flex items-center justify-between mt-2 px-4 pb-4">
|
|
|
|
<div class="w-1/2">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p>$entity.public_notes</p>
|
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>
|
2020-03-11 21:30:49 +01:00
|
|
|
<div class="w-1/3 flex flex-col">
|
|
|
|
<div class="flex px-3 mt-2">
|
|
|
|
<section class="w-1/2 text-right flex flex-col">
|
2020-03-16 11:12:10 +01:00
|
|
|
$discount_label
|
2020-03-11 21:30:49 +01:00
|
|
|
$total_tax_labels
|
|
|
|
$line_tax_labels
|
|
|
|
</section>
|
|
|
|
<section class="w-1/2 text-right flex flex-col">
|
2020-03-16 11:12:10 +01:00
|
|
|
$discount
|
2020-03-11 21:30:49 +01:00
|
|
|
$total_tax_values
|
|
|
|
$line_tax_values
|
|
|
|
</section>
|
|
|
|
</div>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-11 21:30:49 +01:00
|
|
|
<div class="flex items-center justify-between mt-4 pb-4 px-4">
|
|
|
|
<div class="w-1/2">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<p class="font-semibold">$terms_label</p>
|
|
|
|
<p>$terms</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flex w-2/5 flex-col">
|
|
|
|
<section class="flex bg-teal-600 py-3 px-4 text-white">
|
|
|
|
<p class="w-1/2">$balance_due_label</p>
|
|
|
|
<p class="text-right w-1/2">$balance_due</p>
|
|
|
|
</section>
|
2020-02-26 04:20:12 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-17 19:05:11 +01:00
|
|
|
|
2020-02-19 22:46:31 +01:00
|
|
|
</div>
|
2020-02-17 19:05:11 +01:00
|
|
|
</body>
|
2020-02-19 22:46:31 +01:00
|
|
|
</html>';
|
2020-02-17 19:05:11 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-11 21:30:49 +01:00
|
|
|
}
|