You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
518 B
23 lines
518 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromArray;
|
|
|
|
class ParkingPatternSpaceExport implements FromArray
|
|
{
|
|
public function array(): array
|
|
{
|
|
return [
|
|
[
|
|
'No.',
|
|
'Model Name',
|
|
'Parking Space No.',
|
|
'Parking Space Type'
|
|
],
|
|
['1','test_model', 'A0001', 'General'],
|
|
['2','test_model', 'A0002', 'General'],
|
|
['3','test_model', 'A0003', 'General'],
|
|
];
|
|
}
|
|
}
|
|
|