Roman_applicant-site/app/Http/Controllers/admin/Catalog/DirectionController.php

164 lines
6.1 KiB
PHP
Raw Normal View History

2024-02-10 11:23:38 +03:00
<?php
namespace App\Http\Controllers\admin\Catalog;
2024-02-10 11:23:38 +03:00
use App\Http\Controllers\Controller;
use App\Http\Requests\admin\Catalog\StoreDirectionRequest;
use App\Http\Requests\admin\Catalog\UpdateDirectionRequest;
2024-02-10 11:23:38 +03:00
use App\Models\Department;
use App\Models\Direction;
2024-02-15 09:58:01 +03:00
use App\Models\EducationForm;
2024-02-14 16:16:44 +03:00
use App\Models\EducationLevel;
use App\Models\EntranceExamination;
use App\Models\ExaminationType;
2024-02-12 11:25:00 +03:00
use App\Models\Faculty;
use App\Models\Subject;
use App\Models\SubjectType;
2024-02-10 11:23:38 +03:00
use Illuminate\Contracts\View\Factory;
use Illuminate\Contracts\View\View;
use Illuminate\Foundation\Application;
use Illuminate\Http\RedirectResponse;
class DirectionController extends Controller
{
public function index(): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
{
$directions = Direction::all();
return view('admin.catalog.direction.index', compact('directions'));
2024-02-10 11:23:38 +03:00
}
public function create(): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
{
2024-02-14 16:16:44 +03:00
$levels = EducationLevel::pluck('name', 'id');
2024-02-15 09:58:01 +03:00
$forms = EducationForm::pluck('name', 'id');
2024-02-10 11:23:38 +03:00
$departments = Department::pluck('name', 'id');
$examination_types = ExaminationType::pluck('name', 'id');
$subjects = Subject::pluck('name', 'id');
$subjectTypes = SubjectType::pluck('name', 'id');
return view('admin.catalog.direction.create',
compact('departments', 'levels', 'forms', 'examination_types', 'subjectTypes', 'subjects'));
2024-02-10 11:23:38 +03:00
}
public function store(StoreDirectionRequest $request): RedirectResponse
{
$validated = $request->validated();
$direction = new Direction();
$direction->name = $validated['name'];
$direction->full_name = "{$validated['code']} {$validated['name']}";
2024-02-10 11:23:38 +03:00
$direction->description = $validated['description'];
$direction->position = $validated['position'];
$direction->slug = $validated['slug'];
2024-02-14 16:16:44 +03:00
$direction->code = $validated['code'];
$direction->education_level_id = $validated['education_level_id'];
2024-02-15 09:58:01 +03:00
$direction->education_form_id = $validated['education_form_id'];
2024-02-10 11:23:38 +03:00
$direction->department_id = $validated['department_id'];
$direction->save();
if(array_key_exists('entrance-examination', $validated)) {
foreach ($validated['entrance-examination'] as $data) {
$entranceExamination = new EntranceExamination();
$entranceExamination->examination_type_id = $data['examination_type_id'];
$entranceExamination->direction_id = $direction->id;
$entranceExamination->subject_id = $data['subject_id'];
$entranceExamination->scores = $data['scores'];
$entranceExamination->position = $data['position'];
$entranceExamination->subject_type_id = $data['subject_type_id'];
$entranceExamination->save();
}
}
2024-02-10 11:23:38 +03:00
return redirect()->route('directions.index');
}
public function show(Direction $direction): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
{
2024-02-12 11:25:00 +03:00
$department = $direction->department;
$faculty = Faculty::find($department->faculty->id);
$educationalInstitution = $faculty->educationalInstitution;
2024-02-26 14:20:16 +03:00
$ege = $direction
->entranceExaminations
->where('examination_type_id', '=', '1')
->sortBy('position')
->pluck('scores', 'subject_id');
$spo = $direction
->entranceExaminations->where('examination_type_id', '=', '2')
->sortBy('position')
->pluck('scores', 'subject_id');
2024-02-26 14:20:16 +03:00
$magistracy = $direction
->entranceExaminations
->where('examination_type_id', '=', '3')
->pluck('scores', 'subject_id');
$budget = $direction
->places
->where('place_type_id', '=', '1')
->sortBy('position')
->pluck('amount', 'education_form_id');
2024-02-26 14:20:16 +03:00
$paid = $direction
->places
->where('place_type_id', '=', '2')
->sortBy('position')
->pluck('amount', 'education_form_id');
$costs = $direction
->costs
->sortBy('position')
->pluck('cost', 'education_form_id');
2024-02-26 14:20:16 +03:00
2024-02-12 11:25:00 +03:00
return view(
'admin.catalog.direction.show',
compact(
'direction',
'educationalInstitution',
'faculty',
'department',
2024-02-26 14:20:16 +03:00
'ege',
'spo',
'magistracy',
'budget',
'paid',
'costs',
2024-02-12 11:25:00 +03:00
)
);
2024-02-10 11:23:38 +03:00
}
public function edit(Direction $direction): View|Application|Factory|\Illuminate\Contracts\Foundation\Application
{
2024-02-14 16:16:44 +03:00
$levels = EducationLevel::pluck('name', 'id');
2024-02-10 11:23:38 +03:00
$departments = Department::pluck('name', 'id');
2024-02-15 09:58:01 +03:00
$forms = EducationForm::pluck('name', 'id');
return view('admin.catalog.direction.edit', compact('direction', 'departments', 'levels', 'forms'));
2024-02-10 11:23:38 +03:00
}
public function update(UpdateDirectionRequest $request, Direction $direction): RedirectResponse
2024-02-10 11:23:38 +03:00
{
$validated = $request->validated();
$direction->name = $validated['name'];
$direction->full_name = "{$validated['code']} {$validated['name']}";
2024-02-10 11:23:38 +03:00
$direction->description = $validated['description'];
$direction->position = $validated['position'];
$direction->slug = $validated['slug'];
2024-02-14 16:16:44 +03:00
$direction->code = $validated['code'];
$direction->education_level_id = $validated['education_level_id'];
2024-02-15 09:58:01 +03:00
$direction->education_form_id = $validated['education_form_id'];
2024-02-10 11:23:38 +03:00
$direction->department_id = $validated['department_id'];
$direction->save();
return redirect()->route('directions.index');
}
public function destroy(Direction $direction): RedirectResponse
{
2024-02-19 10:51:20 +03:00
if ($direction->entranceExaminations()->exists()) {
return back();
}
2024-02-10 11:23:38 +03:00
$direction->delete();
return redirect()->route('directions.index');
}
}