mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\InvoiceIntent;
|
|
|
|
class FindQuoteIntent extends InvoiceIntent
|
|
{
|
|
public function process()
|
|
{
|
|
$invoice = $this->requestInvoice();
|
|
|
|
$url = $invoice ? $invoice->present()->url : '/quotes';
|
|
|
|
return redirect($url);
|
|
}
|
|
}
|