dstpabuaran.com/app/Http/Controllers/Admin/HR/EmployeeController.php
Yoga Pangestu bc810c93d2 feat: enhance Employee management with filtering options and improved data handling
- Updated EmployeeController to accept request filters for employment status, activity status, and gender.
- Modified EmployeeService to support filtering in the getAll method.
- Enhanced Employee index page with a filter toolbar for better user experience.
- Fixed route parameter naming for employee-related routes.
- Added comprehensive tests for employee index functionality and filtering capabilities.
2026-07-30 11:26:11 +07:00

88 lines
2.5 KiB
PHP

<?php
namespace App\Http\Controllers\Admin\HR;
use App\Http\Controllers\Controller;
use App\Http\Requests\Admin\HR\EmployeeRequest;
use App\Models\User;
use App\Services\Admin\HR\EmployeeService;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Inertia\Inertia;
use Inertia\Response;
class EmployeeController extends Controller
{
public function __construct(
private EmployeeService $service
) {}
public function index(Request $request): Response
{
return Inertia::render('admin/hr/employee/index', [
'employees' => $this->service->getAll($request->only(['employment_status', 'is_active', 'gender'])),
'filters' => $request->only(['employment_status', 'is_active', 'gender']),
]);
}
public function create(): Response
{
return Inertia::render('admin/hr/employee/create');
}
public function store(EmployeeRequest $request): RedirectResponse
{
return $this->handleAction(
fn () => $this->service->create($request->validated()),
'Pegawai berhasil ditambahkan.',
'admin.hr.employees.index'
);
}
public function edit(User $user): Response
{
$user->load(['userProfile', 'employee']);
return Inertia::render('admin/hr/employee/edit', [
'employee' => $user,
]);
}
public function update(EmployeeRequest $request, User $user): RedirectResponse
{
return $this->handleAction(
fn () => $this->service->update($user, $request->validated()),
'Pegawai berhasil diperbarui.',
'admin.hr.employees.index'
);
}
public function destroy(User $user): RedirectResponse
{
return $this->handleAction(
fn () => $this->service->delete($user),
'Pegawai berhasil dihapus.',
'admin.hr.employees.index'
);
}
public function toggleActive(User $user): RedirectResponse
{
$employee = $this->service->toggleActive($user);
$status = $employee->is_active ? 'diaktifkan' : 'dinonaktifkan';
Inertia::flash('toast', ['type' => 'success', 'message' => "Pegawai berhasil {$status}."]);
return to_route('admin.hr.employees.index');
}
public function resetPassword(User $user): RedirectResponse
{
return $this->handleAction(
fn () => $this->service->resetPassword($user),
'Kata sandi pegawai berhasil direset ke kata sandi default.',
'admin.hr.employees.index'
);
}
}