Repository URL to install this package:
|
Version:
1.0.0 ▾
|
<?php
Route::get('/', function () {
return redirect()->route('dashboard.index');
});
Route::group(['prefix' => 'dashboard'], function () {
Route::get('/', ['as' => 'dashboard.index', 'uses' => 'DashboardController@index']);
});