use Illuminate\Support\Facades\Storage; use App\Filesystem\OciFilesystemAdapter; use App\Services\OciObjectStorageService; public function boot() { Storage::extend('oci', function ($app, $config) { return new OciFilesystemAdapter( $app->make(OciObjectStorageService::class) ); }); } Laravel
Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.