add faculty to department field in edit direction

This commit is contained in:
aslan 2024-03-14 10:19:46 +03:00
parent 8304fb438d
commit 03b8fa831d
1 changed files with 5 additions and 1 deletions

View File

@ -154,7 +154,11 @@ class DirectionController extends Controller
{
$levels = EducationLevel::pluck('name', 'id');
$forms = EducationForm::pluck('name', 'id');
$departments = Department::pluck('name', 'id');
$departments = Department::all()
->reduce(function (?array $carry, $department) {
$carry[$department->id] = "{$department->name} - {$department->faculty->name}";
return $carry;
});
$examination_types = ExaminationType::pluck('name', 'id');
$subjects = Subject::pluck('name', 'id');
$subjectTypes = SubjectType::pluck('name', 'id');