22 lines
363 B
PHP
22 lines
363 B
PHP
<?php
|
|
|
|
namespace App\Filament\Exports;
|
|
|
|
class CooperationExcelExport extends BaseExcelExport
|
|
{
|
|
protected function getTitle(): string
|
|
{
|
|
return 'Data Kerja Sama';
|
|
}
|
|
|
|
public function getColumnWidths(): array
|
|
{
|
|
return [
|
|
'A' => 40,
|
|
'B' => 35,
|
|
'F' => 35,
|
|
'K' => 50,
|
|
];
|
|
}
|
|
}
|