Blade.php 381 B

12345678910111213141516171819
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @see \Illuminate\View\Compilers\BladeCompiler
  5. */
  6. class Blade 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 static::$app['view']->getEngineResolver()->resolve('blade')->getCompiler();
  16. }
  17. }