return \Response::forge($this->template, 404);
$this->response->status = 404
Harro Verton wrote on Friday 17th of August 2012:In your action method:
return \Response::forge($this->template, 404);
\Response::forge('something different', 404);
public function action_x() { $this->action_index(); }
return Response::forge($this->template, 404);
public function action_x() { return $this->action_index(); }
It looks like you're new here. If you want to get involved, click one of these buttons!