芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/panoramawholesale.com/app/Exports/StockExport.php
data = $data; } public function collection() { return collect($this->data); } public function headings(): array { return [ 'Product Name', 'Quantity', ]; } public function map($row): array { return [ $row['product_name'], $row['quantity'], ]; } public function styles(Worksheet $sheet) { // Set the format of the 'Quantity' column as text $sheet->getStyle('B')->getNumberFormat()->setFormatCode(\PhpOffice\PhpSpreadsheet\Style\NumberFormat::FORMAT_TEXT); return [ // Additional styling if needed ]; } }