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