model = $model; } public function index() { $response = array(); return Response::json($response); } public function show($id) { $response = array( "pedido" => array("id" => $id) ); return Response::json($response); $response['pedido'] = $this->model->find(1); } }