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.
22 lines
449 B
22 lines
449 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromArray;
|
|
|
|
class ParkingPatternModelExport implements FromArray
|
|
{
|
|
public function array(): array
|
|
{
|
|
return [
|
|
[
|
|
'No.',
|
|
'Parking Space No.',
|
|
'Parking Space Type'
|
|
],
|
|
['1', 'A0001', 'General'],
|
|
['2', 'A0001', 'General'],
|
|
['3', 'A0001', 'General'],
|
|
];
|
|
}
|
|
}
|
|
|