invoiceninja/app/Ninja/Intents/WebApp/ListProductIntent.php
2019-01-30 21:45:46 +11:00

15 lines
250 B
PHP
Executable file

<?php
namespace App\Ninja\Intents\WebApp;
use App\Ninja\Intents\BaseIntent;
class ListProductIntent extends BaseIntent
{
public function process()
{
$this->loadStates(ENTITY_PRODUCT);
return redirect('/products');
}
}