I don't store any layout information in the controller, I store it in the view via
@extends('layouts.master')
When I need to return a view in the controller I use:
return \View::make('examples.foo')->with('foo', $bar);
I prefer this approach as the view determines what layout to use and not the controller - which is subject to re-factoring.