2021-08-24 04:57:46 +02: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-08-24 04:57:46 +02:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class QuotePresenter.
|
|
|
|
*
|
|
|
|
* 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 RecurringQuotePresenter extends InvoicePresenter
|
|
|
|
{
|
|
|
|
}
|