credit = $credit; $this->contact = $contact; } public function run() { if (! $this->contact) { $this->contact = $this->credit->client->primary_contact()->first(); } $path = $this->credit->client->credit_filepath(); $file_path = $path.$this->credit->number.'.pdf'; $disk = config('filesystems.default'); $file = Storage::disk($disk)->exists($file_path); if (! $file) { $file_path = CreateEntityPdf::dispatchNow($this->credit, $this->credit->company, $this->contact); } return Storage::disk($disk)->path($file_path); } }