file_path = $file_path; $this->disk = $disk; } /** * Execute the job. * * @return void */ public function handle() { Storage::disk($this->disk)->delete($this->file_path); } }