View.php 296 B

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