In Laravel 4, my controller uses a Blade layout:
class PagesController extends BaseController { protected $layout = \
For future Google'rs that use Laravel 5, you can now also use it with includes,
@include('views.otherView', ['variable' => 1])