s3 = S3Storage::first(); ray($this->s3); } public function save() { try { $this->validate([ 'file' => 'required|max:150', // 1MB Max ]); set_s3_target($this->s3); $this->file->storeAs('files', $this->file->getClientOriginalName(),'custom-s3'); $this->emit('success', 'File uploaded successfully.'); } catch (\Throwable $th) { return general_error_handler($th, $this, false); } } public function get_files() { set_s3_target($this->s3); dd(Storage::disk('custom-s3')->files('files')); } }