Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. //File path: /config/app.php
  2.  
  3. 'providers' => [
  4.  
  5. [...]
  6.  
  7. /*
  8. * Application Service Providers...
  9. */
  10. [...]
  11. App\Providers\RouteServiceProvider::class,
  12. App\Providers\HelperServiceProvider::class,
  13.  
  14. ],
  15.  
  16. [...]
  17.  
  18. /*
  19. |--------------------------------------------------------------------------
  20. | Class Aliases
  21. |--------------------------------------------------------------------------
  22. |
  23. | This array of class aliases will be registered when this application
  24. | is started. However, feel free to register as many as you wish as
  25. | the aliases are "lazy" loaded so they don't hinder performance.
  26. |
  27. */
  28.  
  29. 'aliases' => [
  30. [...]
  31. 'View' => Illuminate\Support\Facades\View::class,
  32. 'Helper' => App\Helpers\Helper::class,
  33.  
  34. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement