1: <?php namespace Illuminate\Support\Facades; 2: 3: class View extends Facade { 4: 5: /** 6: * Get the registered name of the component. 7: * 8: * @return string 9: */ 10: protected static function getFacadeAccessor() { return 'view'; } 11: 12: }