Posts by teste • 21 points
3 posts
-
1
votes0
answers68
viewsQ: How do I know if the pagination was clicked in the Readable?
I have a problem sending a parameter from one view to another. Until then beauty is working, but I’m having problems in paging, because it gives error in this parameter I need to send, to solve this…
-
0
votes1
answer164
viewsQ: How do I receive the key of an array in the controller in a variable?
I’m sending a parameter in a view href="{{route('products.index', 'E')}}" I need to receive this parameter 'E' in a variable in the controller and send via compact(); in another view follow my…
-
1
votes0
answers50
viewsQ: How do I send any parameter via href and receive in the Resource controller in Laravel?
I made a screen that will have a button to view and another to edit, but the href on the button I have {{route('products.index', 'E')}} my route is so: Route::resource('products',…