I have page that i reach it from post route :
Route::post('/daily', [App\Http\Controllers\AdminController::class, 'daily'])->name('daily');
in this page i have icon which have action of update data by get method :
<td class="text-center notforprint"> <a href="{{route('abs_action',["id"=>$item->id,"action"=>'edit','date'=>$absences[0]->date,'stage'=>$stage,'group'=>$absences[0]->group])}}"><i class="fas fa-check-circle"></i></a></td>
in 'abs_action' controller I update data and want return back to same page with array that the page need:
return back()->with($arr);
I get this error :
The GET method is not supported for this route. Supported methods: POST.
How can I solve it and return to same page