Last active
November 9, 2015 15:25
-
-
Save ziyahan/623d5d1c48861cdea1d7 to your computer and use it in GitHub Desktop.
How can we load module` views?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Route::group(array('module'=>'Admin','namespace' => 'Modules\Admin\Controllers'), function() { | |
Route::get('admin/dashboard',function(){ | |
return view("admin::test"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment