I am trying to make a packet route, and this is my working example:
Route::get('pack', function()
{
return View::make('MyPackage::test');
});
When I run a website, I got this error: No hint path defined for [MyPackage]. How can i solve this? How to determine the path?
Thank.
source
share