passing different type variables to the view from controller in laravel












0















i want to pass two variables called as repcounter and suppliers to the view to do two different task.
here is my function in controller,



 public function admin()
{

$suppliers = SupplierData::all();
$repcounter= SalesRep::count();


return view('dashboard', compact('suppliers'));
}


this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
so how to send this two varibles to the dashboard.blade.php view?










share|improve this question



























    0















    i want to pass two variables called as repcounter and suppliers to the view to do two different task.
    here is my function in controller,



     public function admin()
    {

    $suppliers = SupplierData::all();
    $repcounter= SalesRep::count();


    return view('dashboard', compact('suppliers'));
    }


    this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
    so how to send this two varibles to the dashboard.blade.php view?










    share|improve this question

























      0












      0








      0








      i want to pass two variables called as repcounter and suppliers to the view to do two different task.
      here is my function in controller,



       public function admin()
      {

      $suppliers = SupplierData::all();
      $repcounter= SalesRep::count();


      return view('dashboard', compact('suppliers'));
      }


      this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
      so how to send this two varibles to the dashboard.blade.php view?










      share|improve this question














      i want to pass two variables called as repcounter and suppliers to the view to do two different task.
      here is my function in controller,



       public function admin()
      {

      $suppliers = SupplierData::all();
      $repcounter= SalesRep::count();


      return view('dashboard', compact('suppliers'));
      }


      this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
      so how to send this two varibles to the dashboard.blade.php view?







      laravel model-view-controller






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 '18 at 8:16









      Pasindu SenarathPasindu Senarath

      119116




      119116
























          4 Answers
          4






          active

          oldest

          votes


















          1














          You should try this:



          public function admin()
          {

          $suppliers = SupplierData::all();
          $repcounter= SalesRep::count();


          return view('dashboard', compact('suppliers','repcounter'));
          }





          share|improve this answer
























          • @Pasindu Senarath: If my answer is work for you then please accept my answer

            – user10186369
            Nov 22 '18 at 8:24











          • thanks it worked. can i use this for more variables? or is there a better way to do this?

            – Pasindu Senarath
            Nov 22 '18 at 8:25











          • @PasinduSenarath: Yes you add more variables same as repcounter

            – user10186369
            Nov 22 '18 at 8:27











          • @PasinduSenarath: Please accept my answer

            – user10186369
            Nov 22 '18 at 8:27



















          1














          Replace:



          return view('dashboard', compact('suppliers'));


          With the following code:



          return view('dashboard', compact('suppliers,'repcounter'));





          share|improve this answer































            1














            You can pass multiple variables to the view by nesting the data you want in an array. See below code.



            public function admin()
            {

            //create an empty array
            $response = array();

            //nest your data insde the array instead of creating variables
            $response['suppliers'] = SupplierData::all();
            $response['repcounter'] = SalesRep::count();


            return view('dashboard', compact('response'));
            }


            Inside your View, you can access them as below



            $response['suppliers']
            $response['repcounter']





            share|improve this answer































              0














              This is how I'd implement it



              public function admin()
              {
              $data['suppliers'] = SupplierData::all();
              $data['repcounter']= SalesRep::count();

              return view('dashboard', $data);
              }





              share|improve this answer

























                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%2f53426508%2fpassing-different-type-variables-to-the-view-from-controller-in-laravel%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                You should try this:



                public function admin()
                {

                $suppliers = SupplierData::all();
                $repcounter= SalesRep::count();


                return view('dashboard', compact('suppliers','repcounter'));
                }





                share|improve this answer
























                • @Pasindu Senarath: If my answer is work for you then please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:24











                • thanks it worked. can i use this for more variables? or is there a better way to do this?

                  – Pasindu Senarath
                  Nov 22 '18 at 8:25











                • @PasinduSenarath: Yes you add more variables same as repcounter

                  – user10186369
                  Nov 22 '18 at 8:27











                • @PasinduSenarath: Please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:27
















                1














                You should try this:



                public function admin()
                {

                $suppliers = SupplierData::all();
                $repcounter= SalesRep::count();


                return view('dashboard', compact('suppliers','repcounter'));
                }





                share|improve this answer
























                • @Pasindu Senarath: If my answer is work for you then please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:24











                • thanks it worked. can i use this for more variables? or is there a better way to do this?

                  – Pasindu Senarath
                  Nov 22 '18 at 8:25











                • @PasinduSenarath: Yes you add more variables same as repcounter

                  – user10186369
                  Nov 22 '18 at 8:27











                • @PasinduSenarath: Please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:27














                1












                1








                1







                You should try this:



                public function admin()
                {

                $suppliers = SupplierData::all();
                $repcounter= SalesRep::count();


                return view('dashboard', compact('suppliers','repcounter'));
                }





                share|improve this answer













                You should try this:



                public function admin()
                {

                $suppliers = SupplierData::all();
                $repcounter= SalesRep::count();


                return view('dashboard', compact('suppliers','repcounter'));
                }






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 22 '18 at 8:18







                user10186369




















                • @Pasindu Senarath: If my answer is work for you then please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:24











                • thanks it worked. can i use this for more variables? or is there a better way to do this?

                  – Pasindu Senarath
                  Nov 22 '18 at 8:25











                • @PasinduSenarath: Yes you add more variables same as repcounter

                  – user10186369
                  Nov 22 '18 at 8:27











                • @PasinduSenarath: Please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:27



















                • @Pasindu Senarath: If my answer is work for you then please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:24











                • thanks it worked. can i use this for more variables? or is there a better way to do this?

                  – Pasindu Senarath
                  Nov 22 '18 at 8:25











                • @PasinduSenarath: Yes you add more variables same as repcounter

                  – user10186369
                  Nov 22 '18 at 8:27











                • @PasinduSenarath: Please accept my answer

                  – user10186369
                  Nov 22 '18 at 8:27

















                @Pasindu Senarath: If my answer is work for you then please accept my answer

                – user10186369
                Nov 22 '18 at 8:24





                @Pasindu Senarath: If my answer is work for you then please accept my answer

                – user10186369
                Nov 22 '18 at 8:24













                thanks it worked. can i use this for more variables? or is there a better way to do this?

                – Pasindu Senarath
                Nov 22 '18 at 8:25





                thanks it worked. can i use this for more variables? or is there a better way to do this?

                – Pasindu Senarath
                Nov 22 '18 at 8:25













                @PasinduSenarath: Yes you add more variables same as repcounter

                – user10186369
                Nov 22 '18 at 8:27





                @PasinduSenarath: Yes you add more variables same as repcounter

                – user10186369
                Nov 22 '18 at 8:27













                @PasinduSenarath: Please accept my answer

                – user10186369
                Nov 22 '18 at 8:27





                @PasinduSenarath: Please accept my answer

                – user10186369
                Nov 22 '18 at 8:27













                1














                Replace:



                return view('dashboard', compact('suppliers'));


                With the following code:



                return view('dashboard', compact('suppliers,'repcounter'));





                share|improve this answer




























                  1














                  Replace:



                  return view('dashboard', compact('suppliers'));


                  With the following code:



                  return view('dashboard', compact('suppliers,'repcounter'));





                  share|improve this answer


























                    1












                    1








                    1







                    Replace:



                    return view('dashboard', compact('suppliers'));


                    With the following code:



                    return view('dashboard', compact('suppliers,'repcounter'));





                    share|improve this answer













                    Replace:



                    return view('dashboard', compact('suppliers'));


                    With the following code:



                    return view('dashboard', compact('suppliers,'repcounter'));






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 22 '18 at 8:22









                    dexterdexter

                    1,2731819




                    1,2731819























                        1














                        You can pass multiple variables to the view by nesting the data you want in an array. See below code.



                        public function admin()
                        {

                        //create an empty array
                        $response = array();

                        //nest your data insde the array instead of creating variables
                        $response['suppliers'] = SupplierData::all();
                        $response['repcounter'] = SalesRep::count();


                        return view('dashboard', compact('response'));
                        }


                        Inside your View, you can access them as below



                        $response['suppliers']
                        $response['repcounter']





                        share|improve this answer




























                          1














                          You can pass multiple variables to the view by nesting the data you want in an array. See below code.



                          public function admin()
                          {

                          //create an empty array
                          $response = array();

                          //nest your data insde the array instead of creating variables
                          $response['suppliers'] = SupplierData::all();
                          $response['repcounter'] = SalesRep::count();


                          return view('dashboard', compact('response'));
                          }


                          Inside your View, you can access them as below



                          $response['suppliers']
                          $response['repcounter']





                          share|improve this answer


























                            1












                            1








                            1







                            You can pass multiple variables to the view by nesting the data you want in an array. See below code.



                            public function admin()
                            {

                            //create an empty array
                            $response = array();

                            //nest your data insde the array instead of creating variables
                            $response['suppliers'] = SupplierData::all();
                            $response['repcounter'] = SalesRep::count();


                            return view('dashboard', compact('response'));
                            }


                            Inside your View, you can access them as below



                            $response['suppliers']
                            $response['repcounter']





                            share|improve this answer













                            You can pass multiple variables to the view by nesting the data you want in an array. See below code.



                            public function admin()
                            {

                            //create an empty array
                            $response = array();

                            //nest your data insde the array instead of creating variables
                            $response['suppliers'] = SupplierData::all();
                            $response['repcounter'] = SalesRep::count();


                            return view('dashboard', compact('response'));
                            }


                            Inside your View, you can access them as below



                            $response['suppliers']
                            $response['repcounter']






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Nov 22 '18 at 8:31









                            SheharaShehara

                            1013




                            1013























                                0














                                This is how I'd implement it



                                public function admin()
                                {
                                $data['suppliers'] = SupplierData::all();
                                $data['repcounter']= SalesRep::count();

                                return view('dashboard', $data);
                                }





                                share|improve this answer






























                                  0














                                  This is how I'd implement it



                                  public function admin()
                                  {
                                  $data['suppliers'] = SupplierData::all();
                                  $data['repcounter']= SalesRep::count();

                                  return view('dashboard', $data);
                                  }





                                  share|improve this answer




























                                    0












                                    0








                                    0







                                    This is how I'd implement it



                                    public function admin()
                                    {
                                    $data['suppliers'] = SupplierData::all();
                                    $data['repcounter']= SalesRep::count();

                                    return view('dashboard', $data);
                                    }





                                    share|improve this answer















                                    This is how I'd implement it



                                    public function admin()
                                    {
                                    $data['suppliers'] = SupplierData::all();
                                    $data['repcounter']= SalesRep::count();

                                    return view('dashboard', $data);
                                    }






                                    share|improve this answer














                                    share|improve this answer



                                    share|improve this answer








                                    edited Nov 22 '18 at 10:30









                                    Gabriel M

                                    1,15641223




                                    1,15641223










                                    answered Nov 22 '18 at 9:57









                                    M. RafiM. Rafi

                                    15




                                    15






























                                        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%2f53426508%2fpassing-different-type-variables-to-the-view-from-controller-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

                                        404 Error Contact Form 7 ajax form submitting

                                        How to know if a Active Directory user can login interactively

                                        TypeError: fit_transform() missing 1 required positional argument: 'X'