20 lines
320 B
PHP
20 lines
320 B
PHP
<?php
|
|
|
|
namespace App\Filament\Exports;
|
|
|
|
class ContentRecapExcelExport extends BaseExcelExport
|
|
{
|
|
protected function getTitle(): string
|
|
{
|
|
return 'Data Rekap Konten';
|
|
}
|
|
|
|
public function getColumnWidths(): array
|
|
{
|
|
return [
|
|
'A' => 50,
|
|
'E' => 30,
|
|
];
|
|
}
|
|
}
|