| 123456789101112131415161718 | <?phpclass 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);		}	}}
 |