Remembering Results When Navigating Back to Search Page in Laravel












1















I have created a search page using Laravel that has "text to search" filters at the top. When the mouse is taken off the filter the page's JavaScript fires an Ajax call then returns the results.



As I also have pagination enabled (with Ajax), when I click on page 2 (a link that looks like: http://project.test/customers?page=2) the filters at the top keep any previously entered text, and the search results are held, which is just what I need!



Now the problem:



The database I have has two main tables.




  1. Customers


  2. Purchases



Relationships:
A customer can have many purchases
Any given purchase though belongs to a single customer



I've built a search page so that the user can search for customers that match the given search criteria (e.g., those belonging to a particular city, or country, for example).



In the table below the search filters that shows all the matching customer records, I have a column, with a purchases button that then takes the user to that particular customer's purchase page (here, the purchases button goes a link of the form project.test/customers/{{id}}



The {id} goes through a route, that then loads a new page that shows all the purchases of that particular customer.



Now, I have a "go back" button on this purchase page, that goes the following link:



project.test/customers



This then loads the original search page (but loads it afresh).



THIS IS THE PROBLEM!!!



Because the page is loaded afresh (using the link: project.test/customers)



The search filters are cleared, and the page instead shows ALL the customers. And so, the user then has to re-enter all the search criteria again - which is annoying for the user, as he / she will often need to change a batch of purchase records, across a given set of customers, that match a given set of search criteria - and would rather not have to re-enter the same criteria, again, and again, when navigating away to a customer's purchase page, and then navigating back to the main search page.



Given this problem, my question is, is it possible, conceptually, with Laravel, to go to another page, from a search page, and then, using some method to go back to the original search page, for the search filters, and results, showing from before, to still be there? - This would be a super useful thing to have!



I've seen this done on other sites, possibly using other web technologies, but I'm just unsure how to start / where to begin to do this with Laravel / PHP?



I appreciate any help, thanks in advance!










share|improve this question





























    1















    I have created a search page using Laravel that has "text to search" filters at the top. When the mouse is taken off the filter the page's JavaScript fires an Ajax call then returns the results.



    As I also have pagination enabled (with Ajax), when I click on page 2 (a link that looks like: http://project.test/customers?page=2) the filters at the top keep any previously entered text, and the search results are held, which is just what I need!



    Now the problem:



    The database I have has two main tables.




    1. Customers


    2. Purchases



    Relationships:
    A customer can have many purchases
    Any given purchase though belongs to a single customer



    I've built a search page so that the user can search for customers that match the given search criteria (e.g., those belonging to a particular city, or country, for example).



    In the table below the search filters that shows all the matching customer records, I have a column, with a purchases button that then takes the user to that particular customer's purchase page (here, the purchases button goes a link of the form project.test/customers/{{id}}



    The {id} goes through a route, that then loads a new page that shows all the purchases of that particular customer.



    Now, I have a "go back" button on this purchase page, that goes the following link:



    project.test/customers



    This then loads the original search page (but loads it afresh).



    THIS IS THE PROBLEM!!!



    Because the page is loaded afresh (using the link: project.test/customers)



    The search filters are cleared, and the page instead shows ALL the customers. And so, the user then has to re-enter all the search criteria again - which is annoying for the user, as he / she will often need to change a batch of purchase records, across a given set of customers, that match a given set of search criteria - and would rather not have to re-enter the same criteria, again, and again, when navigating away to a customer's purchase page, and then navigating back to the main search page.



    Given this problem, my question is, is it possible, conceptually, with Laravel, to go to another page, from a search page, and then, using some method to go back to the original search page, for the search filters, and results, showing from before, to still be there? - This would be a super useful thing to have!



    I've seen this done on other sites, possibly using other web technologies, but I'm just unsure how to start / where to begin to do this with Laravel / PHP?



    I appreciate any help, thanks in advance!










    share|improve this question



























      1












      1








      1








      I have created a search page using Laravel that has "text to search" filters at the top. When the mouse is taken off the filter the page's JavaScript fires an Ajax call then returns the results.



      As I also have pagination enabled (with Ajax), when I click on page 2 (a link that looks like: http://project.test/customers?page=2) the filters at the top keep any previously entered text, and the search results are held, which is just what I need!



      Now the problem:



      The database I have has two main tables.




      1. Customers


      2. Purchases



      Relationships:
      A customer can have many purchases
      Any given purchase though belongs to a single customer



      I've built a search page so that the user can search for customers that match the given search criteria (e.g., those belonging to a particular city, or country, for example).



      In the table below the search filters that shows all the matching customer records, I have a column, with a purchases button that then takes the user to that particular customer's purchase page (here, the purchases button goes a link of the form project.test/customers/{{id}}



      The {id} goes through a route, that then loads a new page that shows all the purchases of that particular customer.



      Now, I have a "go back" button on this purchase page, that goes the following link:



      project.test/customers



      This then loads the original search page (but loads it afresh).



      THIS IS THE PROBLEM!!!



      Because the page is loaded afresh (using the link: project.test/customers)



      The search filters are cleared, and the page instead shows ALL the customers. And so, the user then has to re-enter all the search criteria again - which is annoying for the user, as he / she will often need to change a batch of purchase records, across a given set of customers, that match a given set of search criteria - and would rather not have to re-enter the same criteria, again, and again, when navigating away to a customer's purchase page, and then navigating back to the main search page.



      Given this problem, my question is, is it possible, conceptually, with Laravel, to go to another page, from a search page, and then, using some method to go back to the original search page, for the search filters, and results, showing from before, to still be there? - This would be a super useful thing to have!



      I've seen this done on other sites, possibly using other web technologies, but I'm just unsure how to start / where to begin to do this with Laravel / PHP?



      I appreciate any help, thanks in advance!










      share|improve this question
















      I have created a search page using Laravel that has "text to search" filters at the top. When the mouse is taken off the filter the page's JavaScript fires an Ajax call then returns the results.



      As I also have pagination enabled (with Ajax), when I click on page 2 (a link that looks like: http://project.test/customers?page=2) the filters at the top keep any previously entered text, and the search results are held, which is just what I need!



      Now the problem:



      The database I have has two main tables.




      1. Customers


      2. Purchases



      Relationships:
      A customer can have many purchases
      Any given purchase though belongs to a single customer



      I've built a search page so that the user can search for customers that match the given search criteria (e.g., those belonging to a particular city, or country, for example).



      In the table below the search filters that shows all the matching customer records, I have a column, with a purchases button that then takes the user to that particular customer's purchase page (here, the purchases button goes a link of the form project.test/customers/{{id}}



      The {id} goes through a route, that then loads a new page that shows all the purchases of that particular customer.



      Now, I have a "go back" button on this purchase page, that goes the following link:



      project.test/customers



      This then loads the original search page (but loads it afresh).



      THIS IS THE PROBLEM!!!



      Because the page is loaded afresh (using the link: project.test/customers)



      The search filters are cleared, and the page instead shows ALL the customers. And so, the user then has to re-enter all the search criteria again - which is annoying for the user, as he / she will often need to change a batch of purchase records, across a given set of customers, that match a given set of search criteria - and would rather not have to re-enter the same criteria, again, and again, when navigating away to a customer's purchase page, and then navigating back to the main search page.



      Given this problem, my question is, is it possible, conceptually, with Laravel, to go to another page, from a search page, and then, using some method to go back to the original search page, for the search filters, and results, showing from before, to still be there? - This would be a super useful thing to have!



      I've seen this done on other sites, possibly using other web technologies, but I'm just unsure how to start / where to begin to do this with Laravel / PHP?



      I appreciate any help, thanks in advance!







      php laravel laravel-session






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 1 at 22:07









      Karl Hill

      3,13622344




      3,13622344










      asked Jan 1 at 20:17









      Sachin TandonSachin Tandon

      64




      64
























          1 Answer
          1






          active

          oldest

          votes


















          1














          Store the search criteria in the user's session, passing them back to the search page when they navigate back.



          Say you have a controller with a function for the search route:



          public function search (Request $request)
          {
          // store the search criteria
          session(['search_criteria' => $request->input()]);

          // return the results
          }


          Then within another controller function, add the original parameters to the response:



          public function someRouteMethod (Request $request)
          {
          return redirect()->with('search_criteria', session('search_criteria'))->to('/search');
          }


          Then in the search page repopulate the form with the $search_criteria data:



          <input value="{{ !empty($search_criteria) ? $search_criteria['foo'] : '' }}" name="foo">





          share|improve this answer
























          • Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

            – Sachin Tandon
            Jan 2 at 20:32











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53998636%2fremembering-results-when-navigating-back-to-search-page-in-laravel%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Store the search criteria in the user's session, passing them back to the search page when they navigate back.



          Say you have a controller with a function for the search route:



          public function search (Request $request)
          {
          // store the search criteria
          session(['search_criteria' => $request->input()]);

          // return the results
          }


          Then within another controller function, add the original parameters to the response:



          public function someRouteMethod (Request $request)
          {
          return redirect()->with('search_criteria', session('search_criteria'))->to('/search');
          }


          Then in the search page repopulate the form with the $search_criteria data:



          <input value="{{ !empty($search_criteria) ? $search_criteria['foo'] : '' }}" name="foo">





          share|improve this answer
























          • Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

            – Sachin Tandon
            Jan 2 at 20:32
















          1














          Store the search criteria in the user's session, passing them back to the search page when they navigate back.



          Say you have a controller with a function for the search route:



          public function search (Request $request)
          {
          // store the search criteria
          session(['search_criteria' => $request->input()]);

          // return the results
          }


          Then within another controller function, add the original parameters to the response:



          public function someRouteMethod (Request $request)
          {
          return redirect()->with('search_criteria', session('search_criteria'))->to('/search');
          }


          Then in the search page repopulate the form with the $search_criteria data:



          <input value="{{ !empty($search_criteria) ? $search_criteria['foo'] : '' }}" name="foo">





          share|improve this answer
























          • Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

            – Sachin Tandon
            Jan 2 at 20:32














          1












          1








          1







          Store the search criteria in the user's session, passing them back to the search page when they navigate back.



          Say you have a controller with a function for the search route:



          public function search (Request $request)
          {
          // store the search criteria
          session(['search_criteria' => $request->input()]);

          // return the results
          }


          Then within another controller function, add the original parameters to the response:



          public function someRouteMethod (Request $request)
          {
          return redirect()->with('search_criteria', session('search_criteria'))->to('/search');
          }


          Then in the search page repopulate the form with the $search_criteria data:



          <input value="{{ !empty($search_criteria) ? $search_criteria['foo'] : '' }}" name="foo">





          share|improve this answer













          Store the search criteria in the user's session, passing them back to the search page when they navigate back.



          Say you have a controller with a function for the search route:



          public function search (Request $request)
          {
          // store the search criteria
          session(['search_criteria' => $request->input()]);

          // return the results
          }


          Then within another controller function, add the original parameters to the response:



          public function someRouteMethod (Request $request)
          {
          return redirect()->with('search_criteria', session('search_criteria'))->to('/search');
          }


          Then in the search page repopulate the form with the $search_criteria data:



          <input value="{{ !empty($search_criteria) ? $search_criteria['foo'] : '' }}" name="foo">






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 1 at 20:37









          DigitalDrifterDigitalDrifter

          8,6942625




          8,6942625













          • Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

            – Sachin Tandon
            Jan 2 at 20:32



















          • Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

            – Sachin Tandon
            Jan 2 at 20:32

















          Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

          – Sachin Tandon
          Jan 2 at 20:32





          Thanks Digital Drifter! This worked really well. I had no idea about user session feature. Only been on Laravel for 4 weeks. Thanks again!

          – Sachin Tandon
          Jan 2 at 20:32




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53998636%2fremembering-results-when-navigating-back-to-search-page-in-laravel%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          Npm cannot find a required file even through it is in the searched directory

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith