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

Que tal hhs gracias por contestar, le puse asi en el baseController

Código:
<?php

class BaseController extends Controller {

	/**
	 * Setup the layout used by the controller.
	 *
	 * @return void
	 */
	protected function setupLayout()
	{
		if ( ! is_null($this->layout))
		{
			$this->layout = View::make($this->layout);
		}
	}
	public function __construct() { }

}
Esta bien asi?