first commit
This commit is contained in:
26
app/Reports/DummySheetExport.php
Normal file
26
app/Reports/DummySheetExport.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user