mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
19 lines
373 B
PHP
19 lines
373 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
class CreateExpenseIntent extends BaseIntent
|
|
{
|
|
public function process()
|
|
{
|
|
$url = '/expenses/create';
|
|
|
|
//$url = '/invoices/create/' . $clientPublicId . '?';
|
|
//$url .= $this->requestFieldsAsString(Invoice::$requestFields);
|
|
|
|
return redirect($url);
|
|
}
|
|
}
|