I would seriously consider watching every free Laracast that you can. You should be using POST data not get data for anything secure.
@George, you can add additional parameters in route
/action
functions and they'll be rendered as part of query string:
route('products.search', ['sortby'=>'price', 'category'=>'smartphone'])
// outputs:
// http://localhost/products/search?sortby=price&category=smartphone"
Check out these docs:
http://laravel.com/api/5.0/Illuminate/Routing/Router.html#method_getCurrentRoute + http://laravel.com/api/5.0/Illuminate/Routing/Route.html#method_getPath
then use your imaginations.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community