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,48 @@
<?php
declare(strict_types=1);
namespace App\Services\Employee;
use App\Enums\EmploymentStatus;
use App\Models\Employee;
use App\Models\User;
use App\Notifications\EmployeeTerminatedNotification;
use Carbon\Carbon;
use Illuminate\Support\Facades\Notification;
class EmployeeService
{
/**
* @param array<string, mixed> $data
*/
public function create(array $data): Employee
{
return Employee::create($data);
}
/**
* @param array<string, mixed> $data
*/
public function update(Employee $employee, array $data): Employee
{
$employee->update($data);
return $employee->refresh();
}
public function terminate(Employee $employee, ?Carbon $date = null): Employee
{
$employee->update([
'employment_status' => EmploymentStatus::Terminated,
'termination_date' => $date ?? now(),
]);
Notification::send(
User::role('hr_manager')->get(),
new EmployeeTerminatedNotification($employee),
);
return $employee->refresh();
}
}