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