base commit

This commit is contained in:
Mekan1206
2026-07-30 17:24:40 +05:00
commit a794dacd39
345 changed files with 29597 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
<?php
declare(strict_types=1);
namespace App\Exports;
use App\Models\Employee;
use Illuminate\Database\Eloquent\Builder;
use Maatwebsite\Excel\Concerns\FromQuery;
use Maatwebsite\Excel\Concerns\WithHeadings;
use Maatwebsite\Excel\Concerns\WithMapping;
class EmployeesExport implements FromQuery, WithHeadings, WithMapping
{
/**
* @param array<int, int>|null $ids
*/
public function __construct(
private readonly ?array $ids = null,
) {}
public function query(): Builder
{
$query = Employee::query()
->with(['department', 'position', 'shift']);
if ($this->ids !== null) {
$query->whereIn('id', $this->ids);
}
return $query->orderBy('employee_number');
}
/**
* @return array<int, string>
*/
public function headings(): array
{
return [
'Employee Number',
'Full Name',
'National ID',
'Gender',
'Birth Date',
'Phone',
'Address',
'Department',
'Position',
'Shift',
'Employment Status',
'Hire Date',
'Termination Date',
'Notes',
];
}
/**
* @param Employee $employee
* @return array<int, mixed>
*/
public function map($employee): array
{
return [
$employee->employee_number,
$employee->full_name,
$employee->national_id,
$employee->gender?->value,
$employee->birth_date?->toDateString(),
$employee->phone,
$employee->address,
$employee->department?->name,
$employee->position?->name,
$employee->shift?->name,
$employee->employment_status?->value,
$employee->hire_date?->toDateString(),
$employee->termination_date?->toDateString(),
$employee->notes,
];
}
}