12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider
- {
-
- public function register()
- {
-
- }
-
- public function boot()
- {
- $this->app['view']->addNamespace('theme', public_path() . '/theme');
- }
- }
|