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.
31 lines
699 B
31 lines
699 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromArray;
|
|
|
|
class ParkingSpaceTemplateExport implements FromArray
|
|
{
|
|
public function array(): array
|
|
{
|
|
return [
|
|
[
|
|
__exports('global.index'),
|
|
__exports('whitelist.parking'),
|
|
__exports('parking_space.floor'),
|
|
__exports('parking_space.region'),
|
|
__exports('parking_space.space_attr'),
|
|
__exports('parking_space.number')
|
|
],
|
|
[
|
|
'1',
|
|
'MSCP',
|
|
'L1',
|
|
'A',
|
|
'YUC',
|
|
'L1-0001'
|
|
]
|
|
];
|
|
}
|
|
|
|
}
|
|
|