20 lines
349 B
PHP
Executable File
20 lines
349 B
PHP
Executable File
<?php namespace Controllers\Account;
|
|
|
|
use AuthorizedController;
|
|
use Redirect;
|
|
|
|
class DashboardController extends AuthorizedController
|
|
{
|
|
/**
|
|
* Redirect to the profile page.
|
|
*
|
|
* @return Redirect
|
|
*/
|
|
public function getIndex()
|
|
{
|
|
// Redirect to the profile page
|
|
return Redirect::route('profile');
|
|
}
|
|
|
|
}
|