diff --git a/app/Exports/InvoicePendingReasonExport.php b/app/Exports/InvoicePendingReasonExport.php new file mode 100644 index 0000000..237e04c --- /dev/null +++ b/app/Exports/InvoicePendingReasonExport.php @@ -0,0 +1,48 @@ +data = $data; + } + + public function array(): array + { + return $this->data; + } + + public function headings(): array + { + return [ + 'Plant Code', + 'Document Number', + 'Remark', + 'Customer Trade Name', + 'Location', + ]; + } + + public function map($row): array + { + return [ + $row['plant_id'] ?? '', + $row['document_number'] ?? '', + $row['remark'] ?? '', + $row['customer_trade_name'] ?? '', + $row['location'] ?? '', + ]; + } +}