Laravel: 'Get' Route not calling method in controller
I have a route as: Route::get('/edit/detail/{modelName}/{rowId}/{persId}',[AddPersInfoController::class,'editPersDetailTabs'])->name('edit_pers_detail'); and I'm calling it from a button in a table as: Edit: This is the actual code on my page. <td><a href="{{ route('edit_pers_detail',['Posting_history', $posting->id, $posting->pers_info_id] ) }}"> <button class="btn btn-icon btn-primary"> <i class="demo-pli-pencil fs-5"></i>…