Files
investbrain/app/Exports/BackupExport.php
T
hackerESQ 12f3003a3a wip
including working export button
2024-08-27 22:06:10 -05:00

27 lines
559 B
PHP

<?php
namespace App\Exports;
use App\Exports\Sheets\DailyChangesSheet;
use App\Exports\Sheets\PortfoliosSheet;
use App\Exports\Sheets\TransactionsSheet;
use Maatwebsite\Excel\Concerns\Exportable;
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
class BackupExport implements WithMultipleSheets
{
use Exportable;
/**
* @return array
*/
public function sheets(): array
{
return [
new PortfoliosSheet,
new TransactionsSheet,
new DailyChangesSheet
];
}
}