Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin_new2
/
app
/
Providers
/
Filename :
AppServiceProvider.php
back
Copy
<?php namespace App\Providers; use App\Libraries\FileStorageSystem; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Register any application services. * * @return void */ public function register() { $this->app->singleton(FileStorageSystem::class, function ($app) { return new FileStorageSystem(); }); } /** * Bootstrap any application services. * * @return void */ public function boot() { // } }