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

122 lines
4.6 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;
2024-02-12 11:25:00 +03:00
use App\Models\Faculty;
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');
2024-02-15 09:58:01 +03:00
return view('admin.catalog.direction.create', compact('departments', 'levels', 'forms'));
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->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 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')->pluck('scores', 'subject_id');
$spo = $direction->entranceExaminations->where('examination_type_id', '=', '2')->pluck('scores', 'subject_id');
$magistracy = $direction
->entranceExaminations
->where('examination_type_id', '=', '3')
->pluck('scores', 'subject_id');
$budget = $direction->places->where('place_type_id', '=', '1')->pluck('amount', 'education_form_id');
$paid = $direction->places->where('place_type_id', '=', '2')->pluck('amount', 'education_form_id');
$costs = $direction->costs->pluck('cost', 'education_form_id');
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();
2024-02-14 16:16:44 +03:00
$direction = new Direction();
2024-02-10 11:23:38 +03:00
$direction->name = $validated['name'];
$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');
}
}