Skip to content

Instantly share code, notes, and snippets.

@ziyahan
Last active November 9, 2015 15:25
Show Gist options
  • Save ziyahan/623d5d1c48861cdea1d7 to your computer and use it in GitHub Desktop.
Save ziyahan/623d5d1c48861cdea1d7 to your computer and use it in GitHub Desktop.
How can we load module` views?
<?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