23 lines
438 B
PHP
23 lines
438 B
PHP
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
use Maatwebsite\Excel\Concerns\WithTitle;
|
|
|
|
class EmptySheetExport implements FromCollection, WithTitle
|
|
{
|
|
/**
|
|
* @return \Illuminate\Support\Collection
|
|
*/
|
|
public function collection()
|
|
{
|
|
return collect([
|
|
["Data tidak ditemukan"]
|
|
]);
|
|
}
|
|
public function title(): string{
|
|
return "Kosong Guys!";
|
|
}
|
|
}
|