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