validated(); $educationalInstitution = new EducationalInstitution(); $educationalInstitution->name = $validated['name']; $educationalInstitution->description = $validated['description']; $educationalInstitution->slug = $validated['slug']; $educationalInstitution->position = $validated['position']; $educationalInstitution->save(); return redirect()->route('educational_institutions.index'); } public function show(EducationalInstitution $educationalInstitution) { return view('admin.catalog.educational_institution.show', compact('educationalInstitution')); } public function edit(EducationalInstitution $educationalInstitution) { return view('admin.catalog.educational_institution.edit', compact('educationalInstitution')); } public function update(UpdateEducationalInstitutionRequest $request, EducationalInstitution $educationalInstitution) { $validated = $request->validated(); $educationalInstitution->name = $validated['name']; $educationalInstitution->description = $validated['description']; $educationalInstitution->position = $validated['position']; $educationalInstitution->slug = $validated['slug']; $educationalInstitution->save(); return redirect()->route('educational_institutions.index'); } public function destroy(EducationalInstitution $educationalInstitution) { if ($educationalInstitution->faculties()->exists()) { return back(); } $educationalInstitution->delete(); return redirect()->route('educational_institutions.index'); } }