33658e37a3
Signed-off-by: Deon George <deon@leenooks.net>
33 lines
527 B
PHP
33 lines
527 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
|
|
// $this->middleware('subscribed');
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function show()
|
|
{
|
|
return view('home',[
|
|
'page_title'=>'Dashboard',
|
|
]);
|
|
}
|
|
}
|