Separated laravel app to its own folder (#540)
This commit is contained in:
40
api/app/Exports/FormSubmissionExport.php
Normal file
40
api/app/Exports/FormSubmissionExport.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports;
|
||||
|
||||
use Maatwebsite\Excel\Concerns\FromArray;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadingRow;
|
||||
|
||||
class FormSubmissionExport implements FromArray, WithHeadingRow
|
||||
{
|
||||
protected array $submissionData;
|
||||
|
||||
public function __construct(array $submissionData)
|
||||
{
|
||||
$headingRow = [];
|
||||
$contentRow = [];
|
||||
foreach ($submissionData as $i => $row) {
|
||||
if ($i == 0) {
|
||||
$headingRow[] = $this->cleanColumnNames(array_keys($row));
|
||||
}
|
||||
$contentRow[] = array_values($row);
|
||||
}
|
||||
|
||||
$this->submissionData = [
|
||||
$headingRow,
|
||||
$contentRow,
|
||||
];
|
||||
}
|
||||
|
||||
private function cleanColumnNames(array $columnNames): array
|
||||
{
|
||||
return collect($columnNames)->map(function ($columnName) {
|
||||
return preg_replace('/\s\(.*\)/', '', $columnName);
|
||||
})->toArray();
|
||||
}
|
||||
|
||||
public function array(): array
|
||||
{
|
||||
return $this->submissionData;
|
||||
}
|
||||
}
|
||||
26
api/app/Exports/Tax/ArrayExport.php
Normal file
26
api/app/Exports/Tax/ArrayExport.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Tax;
|
||||
|
||||
use Maatwebsite\Excel\Concerns\Exportable;
|
||||
use Maatwebsite\Excel\Concerns\FromArray;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
|
||||
class ArrayExport implements FromArray, WithHeadings
|
||||
{
|
||||
use Exportable;
|
||||
|
||||
public function __construct(public array $data)
|
||||
{
|
||||
}
|
||||
|
||||
public function array(): array
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
public function headings(): array
|
||||
{
|
||||
return array_keys($this->data[0]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user