Is there any way to do a conditional @extends statement in the Blade templating language?
@if(!Request::ajax())
This kind of logic should really be kept out of the template.
In your controller set the $layout property to be dashboard.master then instead of calling returning your view or response, terminate with just $this->layout->content = View::make('dashboard.template')
Take a look at the Laravel docs on this
You could end up with something like this
layout->content = $template;
}
}