Is there any way to do a conditional @extends statement in the Blade templating language?
@extends
@if(!Request::ajax())
in the master layout:
@if(!Request::ajax()) //the master layout with @yield('content'). i.e. your current layout @else @yield('content') @endif