I have just start fuelphp few days ago and want to create modules named "Hello" I put its view inside it but can not get it to work the output says "Fuel\Core\FuelException [ Error ]: The requested view could not be found: hello/index"
what wrong with my modules?
app/modules/hello/classes/controller/hello.php namespace Hello; class Controller_Hello extends \Controller { public function action_index() { return \Response::forge(\View::forge('hello/index')); } }