29 lines
494 B
PHP
29 lines
494 B
PHP
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use App\Models\User;
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
|
|
|
class UserTemplateExport implements FromCollection, ShouldAutoSize
|
|
{
|
|
/**
|
|
* @return \Illuminate\Support\Collection
|
|
*/
|
|
public function collection()
|
|
{
|
|
return collect([
|
|
['No', 'Nama Siswa'],
|
|
]);
|
|
|
|
}
|
|
|
|
public function headings(): array
|
|
{
|
|
return [
|
|
'name',
|
|
];
|
|
}
|
|
}
|