139 lines
3.7 KiB
PHP
139 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use App\Models\Formula;
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
|
use Maatwebsite\Excel\Concerns\WithColumnWidths;
|
|
use Maatwebsite\Excel\Concerns\WithEvents;
|
|
use Maatwebsite\Excel\Concerns\WithHeadings;
|
|
use Maatwebsite\Excel\Concerns\WithMapping;
|
|
use Maatwebsite\Excel\Concerns\WithStyles;
|
|
use Maatwebsite\Excel\Concerns\WithTitle;
|
|
use Maatwebsite\Excel\Events\AfterSheet;
|
|
use PhpOffice\PhpSpreadsheet\Style\Alignment;
|
|
use PhpOffice\PhpSpreadsheet\Style\Border;
|
|
use PhpOffice\PhpSpreadsheet\Style\Fill;
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
|
|
|
|
class FormulaExport implements FromCollection, ShouldAutoSize, WithColumnWidths, WithEvents, WithHeadings, WithMapping, WithStyles, WithTitle
|
|
{
|
|
/**
|
|
* @return \Illuminate\Support\Collection
|
|
*/
|
|
public function collection()
|
|
{
|
|
return Formula::all();
|
|
}
|
|
|
|
public function title(): string
|
|
{
|
|
return 'Data Rumus';
|
|
}
|
|
|
|
public function headings(): array
|
|
{
|
|
return [
|
|
'Kualitas',
|
|
'Ukuran (ML)',
|
|
'Volume (ML)',
|
|
'Tanggal Dibuat',
|
|
'Tanggal Diperbarui',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param Formula $formula
|
|
*/
|
|
public function map($formula): array
|
|
{
|
|
return [
|
|
$formula->quality,
|
|
$formula->size,
|
|
$formula->volume,
|
|
formatDateLocalized($formula->created_at, 'd/m/Y H:i'),
|
|
formatDateLocalized($formula->updated_at, 'd/m/Y H:i'),
|
|
];
|
|
}
|
|
|
|
public function columnWidths(): array
|
|
{
|
|
return [
|
|
'A' => 18, // Quality
|
|
'B' => 15, // Size (ML)
|
|
'C' => 15, // Volume (ML)
|
|
'D' => 21, // Created Date
|
|
'E' => 21, // Updated Date
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function styles(Worksheet $sheet)
|
|
{
|
|
$lastRow = $sheet->getHighestRow();
|
|
$lastColumn = $sheet->getHighestColumn();
|
|
|
|
// Header style
|
|
$headerStyle = [
|
|
'font' => [
|
|
'bold' => true,
|
|
'size' => 12,
|
|
'color' => ['rgb' => 'FFFFFF'],
|
|
],
|
|
'fill' => [
|
|
'fillType' => Fill::FILL_SOLID,
|
|
'startColor' => ['rgb' => '475569'], // Slate - elegant
|
|
],
|
|
'alignment' => [
|
|
'horizontal' => Alignment::HORIZONTAL_CENTER,
|
|
'vertical' => Alignment::VERTICAL_CENTER,
|
|
],
|
|
'borders' => [
|
|
'allBorders' => [
|
|
'borderStyle' => Border::BORDER_THIN,
|
|
'color' => ['rgb' => '000000'],
|
|
],
|
|
],
|
|
];
|
|
|
|
// Data rows style
|
|
$dataStyle = [
|
|
'borders' => [
|
|
'allBorders' => [
|
|
'borderStyle' => Border::BORDER_THIN,
|
|
'color' => ['rgb' => '000000'],
|
|
],
|
|
],
|
|
'alignment' => [
|
|
'vertical' => Alignment::VERTICAL_TOP,
|
|
],
|
|
];
|
|
|
|
return [
|
|
// Header styling
|
|
1 => $headerStyle,
|
|
|
|
// Data rows styling
|
|
'A2:'.$lastColumn.$lastRow => $dataStyle,
|
|
];
|
|
}
|
|
|
|
public function registerEvents(): array
|
|
{
|
|
return [
|
|
AfterSheet::class => function (AfterSheet $event) {
|
|
// Auto-size columns with max width
|
|
foreach (range('A', 'E') as $column) {
|
|
$event->sheet->getColumnDimension($column)->setAutoSize(true);
|
|
}
|
|
|
|
// Set row height for header
|
|
$event->sheet->getRowDimension(1)->setRowHeight(25);
|
|
},
|
|
];
|
|
}
|
|
}
|