mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
8fd2daf038
* Refactor Bold.php & Business.php * Refactor Clean.php * Refactor Creative.php * Update Creative.php * Refactor Elegant.php * Refactor Hipster.php * Refactor Modern.php * Refactor Photo.php * Update Plain.php * Update Plain.php * Refactor Playful.php
184 lines
5.3 KiB
PHP
184 lines
5.3 KiB
PHP
<?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;
|
|
|
|
/**
|
|
* @wip: Table margins act weird.
|
|
*/
|
|
class Creative extends AbstractDesign
|
|
{
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
|
|
public function includes()
|
|
{
|
|
return '
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>$number</title>
|
|
<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">
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<style>
|
|
body {font-size:90%}
|
|
@page
|
|
{
|
|
size: auto;
|
|
margin-top: 6mm;
|
|
}
|
|
.table_header_thead_class { text-align: left; border-radius: .5rem; }
|
|
.table_header_td_class { text-transform: uppercase; font-size: 1.25rem; color: #b83280; padding: 1.25rem 1rem; font-weight: 500 }
|
|
.table_body_td_class { padding: 1rem;}
|
|
</style>
|
|
|
|
';
|
|
}
|
|
|
|
|
|
public function header() {
|
|
|
|
return '
|
|
|
|
<div class="py-16 mx-16">
|
|
<div class="flex justify-between">
|
|
<div class="w-2/3 flex">
|
|
<div class="flex flex-col">
|
|
$client_details
|
|
</div>
|
|
<div class="ml-6 flex flex-col">
|
|
$company_details
|
|
</div>
|
|
<div class="ml-6 flex flex-col mr-4">
|
|
$company_address
|
|
</div>
|
|
</div>
|
|
$company_logo
|
|
</div>
|
|
';
|
|
|
|
}
|
|
|
|
public function body() {
|
|
|
|
return '
|
|
<div class="flex justify-between mt-8">
|
|
<div class="w-2/3 flex flex-col">
|
|
<h1 class="text-5xl uppercase font-semibold">$entity_label</h1>
|
|
<i class="ml-4 text-5xl text-pink-700">$entity_number</i>
|
|
</div>
|
|
<div class="flex">
|
|
<div class="flex justify-between flex-col">
|
|
$entity_labels
|
|
</div>
|
|
<div class="flex flex-col text-right">
|
|
$entity_details
|
|
</div>
|
|
</div>
|
|
</div>
|
|
';
|
|
|
|
}
|
|
|
|
|
|
public function task() {
|
|
}
|
|
|
|
public function task_table()
|
|
{
|
|
return '
|
|
<table class="w-full table-auto mt-12 border-t-4 border-pink-700 bg-white">
|
|
<thead class="text-left rounded-lg">
|
|
<tr>
|
|
$task_table_header
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
$task_table_body
|
|
</tbody>
|
|
</table>
|
|
';
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return '';
|
|
}
|
|
|
|
public function product_table() {
|
|
|
|
return '
|
|
<table class="w-full table-auto mt-12 border-t-4 border-pink-700 bg-white">
|
|
<thead class="text-left rounded-lg">
|
|
<tr>
|
|
$product_table_header
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
$product_table_body
|
|
</tbody>
|
|
</table>';
|
|
}
|
|
|
|
public function footer() {
|
|
|
|
return '
|
|
<div class="border-b-4 border-pink-700">
|
|
<div class="flex items-center justify-between mt-2 px-4 pb-4">
|
|
<div class="w-1/2">
|
|
<div class="flex flex-col">
|
|
<p>Wedding photos will be available approximately 1 month after the wedding date. Thank you for your patience!</p>
|
|
</div>
|
|
</div>
|
|
<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">
|
|
<span>Subtotal</span>
|
|
<span>Discount</span>
|
|
<span>Paid To Date</span>
|
|
</section>
|
|
<section class="w-1/2 text-right flex flex-col">
|
|
<span>$0</span>
|
|
<span>$0</span>
|
|
<span>$0</span>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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</p>
|
|
<p>N21</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w-full flex justify-end mt-4">
|
|
<p>Balance Due</p>
|
|
<p class="ml-8 text-pink-700 font-semibold">$5,280.00</p>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>';
|
|
|
|
}
|
|
|
|
}
|