2021-01-15 04:10:35 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-01-15 04:10:35 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-01-15 04:10:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class InvoicePresenter.
|
|
|
|
*
|
|
|
|
* For convenience and to allow users to easiliy
|
|
|
|
* customise their invoices, we provide all possible
|
|
|
|
* invoice variables to be available from this presenter.
|
|
|
|
*
|
|
|
|
* Shortcuts to other presenters are here to facilitate
|
|
|
|
* a clean UI / UX
|
|
|
|
*/
|
|
|
|
class RecurringInvoicePresenter extends InvoicePresenter
|
|
|
|
{
|
|
|
|
}
|