2017-04-04 17:51:01 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Ninja\Intents\WebApp;
|
|
|
|
|
|
|
|
|
|
use App\Ninja\Intents\BaseIntent;
|
|
|
|
|
|
|
|
|
|
class ListProductIntent extends BaseIntent
|
|
|
|
|
{
|
|
|
|
|
public function process()
|
|
|
|
|
{
|
2017-04-05 22:20:11 +03:00
|
|
|
$this->loadStates(ENTITY_PRODUCT);
|
|
|
|
|
|
2017-04-04 17:51:01 +03:00
|
|
|
return redirect('/products');
|
|
|
|
|
}
|
|
|
|
|
}
|