2019-04-24 03:12:27 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. 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 Illuminate\Http\Request;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
|
|
|
|
class DashboardController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
2020-03-13 22:17:08 +01:00
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
2019-04-24 03:12:27 +02:00
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2020-03-23 18:10:42 +01:00
|
|
|
return $this->render('dashboard.index');
|
2019-04-24 03:12:27 +02:00
|
|
|
}
|
|
|
|
}
|