2019-04-24 03:12:27 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-24 03:12:27 +02:00
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Illuminate\View\View;
|
2019-04-24 03:12:27 +02:00
|
|
|
|
|
|
|
class DashboardController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return Factory|View
|
2019-04-24 03:12:27 +02:00
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2021-01-15 12:19:34 +01:00
|
|
|
return redirect()->route('client.invoices.index');
|
|
|
|
//return $this->render('dashboard.index');
|
2019-04-24 03:12:27 +02:00
|
|
|
}
|
|
|
|
}
|