2018-08-29 15:18:15 +00:00
|
|
|
<?php
|
|
|
|
namespace App\Http\Controllers\Settings;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
|
2018-08-31 14:47:04 +00:00
|
|
|
class DashboardController extends Controller
|
2018-08-29 15:18:15 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Create a new controller instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the application dashboard.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*/
|
|
|
|
public function index(): View
|
|
|
|
{
|
2018-08-31 14:47:04 +00:00
|
|
|
return view('settings.dashboard');
|
2018-08-29 15:18:15 +00:00
|
|
|
}
|
|
|
|
}
|