Fix controller cleanup issues
All checks were successful
Tests / Laravel tests (pull_request) Successful in 3m24s
All checks were successful
Tests / Laravel tests (pull_request) Successful in 3m24s
This commit is contained in:
@@ -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'));
|
||||
|
||||
Reference in New Issue
Block a user