invoiceninja/app/Ninja/Intents/WebApp/ListInvoiceIntent.php
2017-04-04 17:51:01 +03:00

14 lines
212 B
PHP

<?php
namespace App\Ninja\Intents\WebApp;
use App\Ninja\Intents\InvoiceIntent;
class ListInvoiceIntent extends InvoiceIntent
{
public function process()
{
return redirect('/invoices');
}
}