123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Providers;
- use App\Facade\Site;
- use Illuminate\Support\ServiceProvider;
- class SiteServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap the application services
- */
- public function boot()
- {
- $this->app->singleton('siteData', function () {
- return $this->app->make(Site::class);
- });
- }
- /**
- * register the application services
- */
- public function register()
- {
- }
- }
|