I’m reading the Laravel Blade documentation and I can’t figure out how to assign variables inside a template for use later. I can’t do {{ $old_section = "whatever" }}...
  • May 15, 2022
  • 0 Comments
I have a string returned to one of my views, like this: $text="<p><strong>Lorem</strong> ipsum dolor <img src="images/test.jpg"></p>" I’m trying to display it with Blade: {{$text}} However, the output is...
  • May 10, 2022
  • 0 Comments