Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/05/2014, 09:23
jomanuel™
 
Fecha de Ingreso: mayo-2007
Mensajes: 5
Antigüedad: 17 años, 7 meses
Puntos: 0
Información Error FatalErrorException Cannot call constructor

Que tal amigos les comento que estoy haciendo un ecommerce de un tutorial pero me encontre con problemas al momento de ver el resultado del modulo de crear categorias de productos me pone el error:
Symfony \ Component \ Debug \ Exception \ FatalErrorException
Cannot call constructor seguido por \app\controllers\CategoriesController.php7 les anexo una imagen




y nose que pueda ser incluyo el codigo del modelo y del controller por si puedo tener un error.

CategoriesController.php

Código:
<?php

class CategoriesController extends BaseController {

	public function __construct() {
		parent::__construct();
		$this->beforeFilter('csrf', array('on'=>'post'));
		$this->beforeFilter('admin');
	}

	public function getIndex() {
		return View::make('categories.index')
			->with('categories', Category::all());
	}

	public function postCreate() {
		$validator = Validator::make(Input::all(), Category::$rules);

		if ($validator->passes()) {
			$category = new Category;
			$category->name = Input::get('name');
			$category->save();

			return Redirect::to('admin/categories/index')
				->with('message', 'Category Created');
		}

	return Redirect::to('admin/categories/index')
			->with('message', 'Something went wrong')
			->withErrors($validator)
			->withInput();
	}

	public function postDestroy() {
		$category = Category::find(Input::get('id'));

		if ($category) {
			$category->delete();
			return Redirect::to('admin/categories/index')
				->with('message', 'Category Deleted');
		}

		return Redirect::to('admin/categories/index')
			->with('message', 'Something went wrong, please try again');
	}
}
Category.php

Código:
<?php

class Category extends Eloquent {

	protected $fillable = array('name');

	public static $rules = array('name'=>'required|min:3');

	public function products() {
		return $this->hasMany('Product');
	}
}
Agradecería mucho su ayuda! Saludos!