invitation = $invitation; $this->invoice = $invitation->invoice; $this->company = $invitation->company; $this->contact = $invitation->contact; $this->disk = $disk ?? config('filesystems.default'); } public function handle() { if (config('ninja.phantomjs_key')) { return (new Phantom)->generate($this->invitation); } App::setLocale($this->contact->preferredLocale()); $path = $this->invoice->client->invoice_filepath(); $file_path = $path . $this->invoice->number . '.pdf'; $invoice_design_id = $this->invoice->design_id ? $this->invoice->design_id : $this->decodePrimaryKey($this->invoice->client->getSetting('invoice_design_id')); $design = Design::find($invoice_design_id); $html = new HtmlEngine(null, $this->invitation, 'invoice'); $design_namespace = 'App\Services\PdfMaker\Designs\\' . $design->name; $design_class = new $design_namespace(); $pdf_variables = json_decode(json_encode($this->invoice->company->settings->pdf_variables), 1); $state = [ 'template' => $design_class->elements([ 'client' => $this->invoice->client, 'entity' => $this->invoice, 'product-table-columns' => $pdf_variables['product_columns'], ]), 'variables' => $html->generateLabelsAndValues(), ]; $maker = new PdfMakerService($state); $maker ->design($design_namespace) ->build(); //todo - move this to the client creation stage so we don't keep hitting this unnecessarily Storage::makeDirectory($path, 0775); $pdf = $this->makePdf(null, null, $maker->getCompiledHTML()); $instance = Storage::disk($this->disk)->put($file_path, $pdf); return $file_path; } }