Using blade data value into another one within layout












1















I want to use a variable value into another one (both are in the same table as keys) and display in a blade layout the container variable value. Both variables are passed using the with method from the controller. Is that possible?
Here a quick demo of what I'm loooking for :



# controller method 
public function build()
{
return $this
->view('emails.registration_following')
->with( ['name' => 'Nick', 'text' => 'Hello {{ $name }}'] ) # Here goes the thing
;
}


And the blade.php looks like :



<html>
<body>
<p> {{ $text }} </p>
</body>
</html>


The expect output by me is Hello Nickbut I got Hello {{Nick}}. I know that brackets here, are treated like String but how to circumvine that?










share|improve this question





























    1















    I want to use a variable value into another one (both are in the same table as keys) and display in a blade layout the container variable value. Both variables are passed using the with method from the controller. Is that possible?
    Here a quick demo of what I'm loooking for :



    # controller method 
    public function build()
    {
    return $this
    ->view('emails.registration_following')
    ->with( ['name' => 'Nick', 'text' => 'Hello {{ $name }}'] ) # Here goes the thing
    ;
    }


    And the blade.php looks like :



    <html>
    <body>
    <p> {{ $text }} </p>
    </body>
    </html>


    The expect output by me is Hello Nickbut I got Hello {{Nick}}. I know that brackets here, are treated like String but how to circumvine that?










    share|improve this question



























      1












      1








      1








      I want to use a variable value into another one (both are in the same table as keys) and display in a blade layout the container variable value. Both variables are passed using the with method from the controller. Is that possible?
      Here a quick demo of what I'm loooking for :



      # controller method 
      public function build()
      {
      return $this
      ->view('emails.registration_following')
      ->with( ['name' => 'Nick', 'text' => 'Hello {{ $name }}'] ) # Here goes the thing
      ;
      }


      And the blade.php looks like :



      <html>
      <body>
      <p> {{ $text }} </p>
      </body>
      </html>


      The expect output by me is Hello Nickbut I got Hello {{Nick}}. I know that brackets here, are treated like String but how to circumvine that?










      share|improve this question
















      I want to use a variable value into another one (both are in the same table as keys) and display in a blade layout the container variable value. Both variables are passed using the with method from the controller. Is that possible?
      Here a quick demo of what I'm loooking for :



      # controller method 
      public function build()
      {
      return $this
      ->view('emails.registration_following')
      ->with( ['name' => 'Nick', 'text' => 'Hello {{ $name }}'] ) # Here goes the thing
      ;
      }


      And the blade.php looks like :



      <html>
      <body>
      <p> {{ $text }} </p>
      </body>
      </html>


      The expect output by me is Hello Nickbut I got Hello {{Nick}}. I know that brackets here, are treated like String but how to circumvine that?







      php laravel laravel-5 laravel-blade






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 19 '18 at 11:40







      Cfass King

















      asked Nov 13 '18 at 8:45









      Cfass KingCfass King

      4210




      4210
























          4 Answers
          4






          active

          oldest

          votes


















          1














          How about defining the variable in the function first:



          # controller method 
          public function build()
          {
          $name = 'Nick';

          return $this
          ->view('emails.registration_following')
          ->with( ['name' => $name, 'text' => "Hello $name"] ) # Here goes the thing
          ;
          }


          In this way, you have both $name and $text accessible in the view.






          share|improve this answer
























          • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

            – Cfass King
            Nov 13 '18 at 10:02






          • 1





            Thanks. How did I not see it?

            – Cfass King
            Nov 13 '18 at 10:03











          • Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

            – hktang
            Nov 13 '18 at 12:44





















          1














          In fact, I did not need to pass two variables but just one and put in its value all needed other variables to form my expected text.
          It was a bad idea to do what I was asking for. Thank you.






          share|improve this answer































            0














            Have u tried like this below?



            public function build()
            {
            $name = 'Nick';
            return $this
            ->view('emails.registration_following')
            ->with( ['name' => $name , 'text' => 'Hello '.$name] ) # Here goes the thing
            ;
            }





            share|improve this answer
























            • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

              – Cfass King
              Nov 13 '18 at 10:04





















            0














            with( ['name' => 'Nick', 'text' => "Hello $name"] ) Please use double quote






            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%2f53277012%2fusing-blade-data-value-into-another-one-within-layout%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














              How about defining the variable in the function first:



              # controller method 
              public function build()
              {
              $name = 'Nick';

              return $this
              ->view('emails.registration_following')
              ->with( ['name' => $name, 'text' => "Hello $name"] ) # Here goes the thing
              ;
              }


              In this way, you have both $name and $text accessible in the view.






              share|improve this answer
























              • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

                – Cfass King
                Nov 13 '18 at 10:02






              • 1





                Thanks. How did I not see it?

                – Cfass King
                Nov 13 '18 at 10:03











              • Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

                – hktang
                Nov 13 '18 at 12:44


















              1














              How about defining the variable in the function first:



              # controller method 
              public function build()
              {
              $name = 'Nick';

              return $this
              ->view('emails.registration_following')
              ->with( ['name' => $name, 'text' => "Hello $name"] ) # Here goes the thing
              ;
              }


              In this way, you have both $name and $text accessible in the view.






              share|improve this answer
























              • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

                – Cfass King
                Nov 13 '18 at 10:02






              • 1





                Thanks. How did I not see it?

                – Cfass King
                Nov 13 '18 at 10:03











              • Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

                – hktang
                Nov 13 '18 at 12:44
















              1












              1








              1







              How about defining the variable in the function first:



              # controller method 
              public function build()
              {
              $name = 'Nick';

              return $this
              ->view('emails.registration_following')
              ->with( ['name' => $name, 'text' => "Hello $name"] ) # Here goes the thing
              ;
              }


              In this way, you have both $name and $text accessible in the view.






              share|improve this answer













              How about defining the variable in the function first:



              # controller method 
              public function build()
              {
              $name = 'Nick';

              return $this
              ->view('emails.registration_following')
              ->with( ['name' => $name, 'text' => "Hello $name"] ) # Here goes the thing
              ;
              }


              In this way, you have both $name and $text accessible in the view.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 13 '18 at 8:49









              hktanghktang

              9491429




              9491429













              • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

                – Cfass King
                Nov 13 '18 at 10:02






              • 1





                Thanks. How did I not see it?

                – Cfass King
                Nov 13 '18 at 10:03











              • Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

                – hktang
                Nov 13 '18 at 12:44





















              • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

                – Cfass King
                Nov 13 '18 at 10:02






              • 1





                Thanks. How did I not see it?

                – Cfass King
                Nov 13 '18 at 10:03











              • Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

                – hktang
                Nov 13 '18 at 12:44



















              It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

              – Cfass King
              Nov 13 '18 at 10:02





              It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables.

              – Cfass King
              Nov 13 '18 at 10:02




              1




              1





              Thanks. How did I not see it?

              – Cfass King
              Nov 13 '18 at 10:03





              Thanks. How did I not see it?

              – Cfass King
              Nov 13 '18 at 10:03













              Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

              – hktang
              Nov 13 '18 at 12:44







              Thanks, @CfassKing. This is what StackOverflow is for. If possible please upvote and accept :)

              – hktang
              Nov 13 '18 at 12:44















              1














              In fact, I did not need to pass two variables but just one and put in its value all needed other variables to form my expected text.
              It was a bad idea to do what I was asking for. Thank you.






              share|improve this answer




























                1














                In fact, I did not need to pass two variables but just one and put in its value all needed other variables to form my expected text.
                It was a bad idea to do what I was asking for. Thank you.






                share|improve this answer


























                  1












                  1








                  1







                  In fact, I did not need to pass two variables but just one and put in its value all needed other variables to form my expected text.
                  It was a bad idea to do what I was asking for. Thank you.






                  share|improve this answer













                  In fact, I did not need to pass two variables but just one and put in its value all needed other variables to form my expected text.
                  It was a bad idea to do what I was asking for. Thank you.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 13 '18 at 10:07









                  Cfass KingCfass King

                  4210




                  4210























                      0














                      Have u tried like this below?



                      public function build()
                      {
                      $name = 'Nick';
                      return $this
                      ->view('emails.registration_following')
                      ->with( ['name' => $name , 'text' => 'Hello '.$name] ) # Here goes the thing
                      ;
                      }





                      share|improve this answer
























                      • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                        – Cfass King
                        Nov 13 '18 at 10:04


















                      0














                      Have u tried like this below?



                      public function build()
                      {
                      $name = 'Nick';
                      return $this
                      ->view('emails.registration_following')
                      ->with( ['name' => $name , 'text' => 'Hello '.$name] ) # Here goes the thing
                      ;
                      }





                      share|improve this answer
























                      • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                        – Cfass King
                        Nov 13 '18 at 10:04
















                      0












                      0








                      0







                      Have u tried like this below?



                      public function build()
                      {
                      $name = 'Nick';
                      return $this
                      ->view('emails.registration_following')
                      ->with( ['name' => $name , 'text' => 'Hello '.$name] ) # Here goes the thing
                      ;
                      }





                      share|improve this answer













                      Have u tried like this below?



                      public function build()
                      {
                      $name = 'Nick';
                      return $this
                      ->view('emails.registration_following')
                      ->with( ['name' => $name , 'text' => 'Hello '.$name] ) # Here goes the thing
                      ;
                      }






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Nov 13 '18 at 8:49









                      DPSDPS

                      491212




                      491212













                      • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                        – Cfass King
                        Nov 13 '18 at 10:04





















                      • It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                        – Cfass King
                        Nov 13 '18 at 10:04



















                      It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                      – Cfass King
                      Nov 13 '18 at 10:04







                      It's quite a good idea. Looking at your code made me figure out that I did not need to pass two variables but just one and put in its value all needed other variables. Thanks. How did I not see it?

                      – Cfass King
                      Nov 13 '18 at 10:04













                      0














                      with( ['name' => 'Nick', 'text' => "Hello $name"] ) Please use double quote






                      share|improve this answer




























                        0














                        with( ['name' => 'Nick', 'text' => "Hello $name"] ) Please use double quote






                        share|improve this answer


























                          0












                          0








                          0







                          with( ['name' => 'Nick', 'text' => "Hello $name"] ) Please use double quote






                          share|improve this answer













                          with( ['name' => 'Nick', 'text' => "Hello $name"] ) Please use double quote







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 13 '18 at 8:55









                          AbhijitAbhijit

                          1,012715




                          1,012715






























                              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%2f53277012%2fusing-blade-data-value-into-another-one-within-layout%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







                              這個網誌中的熱門文章

                              Tangent Lines Diagram Along Smooth Curve

                              Yusuf al-Mu'taman ibn Hud

                              Zucchini