8 lines
119 B
PHP
8 lines
119 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
Route::get('dashboard', array('as' => 'dashboard', function()
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}));
|
||
|
|
|
||
|
|
Route::controller('dashboard::panel');
|