I am a new fuelphp driver. In order to practice it i code a simple example - "access controller method from views" , but it fails , when i click link then error shows The requested URL /fuelphp/1003/public/api/brand was not found on this server. please help me, tks .
//controller class Controller_Api extends Controller {
public function action_index() { return Response::forge(View::forge('wcar/show')); }
public function action_brand() { Debug::dump('saab'); } }