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

@@ -3,10 +3,8 @@
namespace App\Http\Controllers;
use App\Models\WorkExperience;
use Illuminate\Http\Request;
use App\Http\Requests\WorkExperienceRequest;
class WorkExperienceController extends Controller
{
public function index()
@@ -32,11 +30,6 @@ class WorkExperienceController extends Controller
return redirect()->route('work-experiences.index')->with('success', 'Ervaring toegevoegd.');
}
public function show(WorkExperience $workExperience)
{
return view('work_experiences.show', compact('workExperience'));
}
public function edit(WorkExperience $workExperience)
{
return view('work_experiences.edit', compact('workExperience'));