Files
cattr/app/Reports/DummySheetExport.php
Noor E Ilahi 7ccf44f7da first commit
2026-01-09 12:54:53 +05:30

27 lines
390 B
PHP

<?php
namespace App\Reports;
use Maatwebsite\Excel\Concerns\FromArray;
class DummySheetExport implements FromArray
{
protected $title;
public function __construct($title = 'Empty Sheet')
{
$this->title = $title;
}
public function array(): array
{
return [];
}
public function title(): string
{
return $this->title;
}
}