What is the difference between {{ }} and {!! !!} in laravel blade files?

后端 未结 5 863
执念已碎
执念已碎 2020-11-29 06:08

In the laravel framework we can use blade to add PHP code in html file.
We are using both {{ }} and {!! !!} syntax in blade files of Laravel. <

5条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-29 07:04

    If you don't want the data to be escaped then use {!! !!} else use {{ }}.

提交回复
热议问题