changes
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Containers\Dashboard\Actions\Departments;
|
||||
|
||||
use App\Containers\InstituteStructure\Models\Department;
|
||||
use App\Containers\User\Models\User;
|
||||
use App\Services\App\Cache\DepartmentCacheService;
|
||||
|
||||
class UpdateDepartmentTeacherAction
|
||||
{
|
||||
public function __construct(
|
||||
private readonly DepartmentCacheService $cacheService,
|
||||
) {}
|
||||
|
||||
public function run(Department $department, User $user, array $data): void
|
||||
{
|
||||
$department->teachers()->updateExistingPivot($user->id, [
|
||||
'teaching_position' => $data['teaching_position'],
|
||||
'service_email' => $data['service_email'] ?? null,
|
||||
'service_phone' => $data['service_phone'] ?? null,
|
||||
'cabinet' => $data['cabinet'] ?? null,
|
||||
]);
|
||||
|
||||
$this->cacheService->clearAllCacheByModel();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user