mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
c72e1f0139
* Working on Oauth * splitting out JS files * Working on oAuth * working on oAuth * minor fixes * create client * create client * create client * Working on adding a client
31 lines
447 B
PHP
31 lines
447 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
class DashboardController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth:user');
|
|
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
return view('dashboard.index');
|
|
}
|
|
|
|
|
|
}
|