Fix controller cleanup issues
All checks were successful
Tests / Laravel tests (pull_request) Successful in 3m24s

This commit is contained in:
2026-06-03 21:57:10 +02:00
parent 27449eabf0
commit fe47b79a25
9 changed files with 18 additions and 35 deletions

View File

@@ -29,11 +29,6 @@ class EducationController extends Controller
return redirect()->route('educations.index')->with('success', 'Opleiding toegevoegd.');
}
public function show(Education $education)
{
return view('educations.show', compact('education'));
}
public function edit(Education $education)
{
return view('educations.edit', compact('education'));