forked from aslan/applicant-site
add faculty to department
This commit is contained in:
parent
c35a3cefcb
commit
48767bbf27
|
@ -36,7 +36,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');
|
||||
|
|
Loading…
Reference in New Issue