You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the filter is applied, the address for the browse button should look like http://site.com/admin/city/edit/10?ref=city-grid but instead it is formed like this http://site.com/admin/city/edit?name=Boston&city=1&ref=city-grid. At this route for removal it is formed correctly irrespective of use of the filter or sorting.
Rule in web.php look like this Route::match(['get','post'], '/city/edit/{id}', ['uses' => 'Admin\CityController@edit', 'as' => 'city.edit']);
The text was updated successfully, but these errors were encountered:
When the filter is applied, the address for the browse button should look like
http://site.com/admin/city/edit/10?ref=city-grid
but instead it is formed like thishttp://site.com/admin/city/edit?name=Boston&city=1&ref=city-grid
. At this route for removal it is formed correctly irrespective of use of the filter or sorting.Rule in web.php look like this
Route::match(['get','post'], '/city/edit/{id}', ['uses' => 'Admin\CityController@edit', 'as' => 'city.edit']);
The text was updated successfully, but these errors were encountered: