6
I’m trying to carry a view within a layout, follows my controller down below:
class IndexController extends BaseController {
protected $layout = 'admin.layouts.default';
public function index()
{
$this->layout->$this->layoutcontent = View::make('admin.index');
}
}
But it is returning the following error:
Attempt to assign Property of non-object