InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between {{ $username }} and {!! $username !!} in Laravel? |
|
Answer» {{ $USERNAME }} is SIMPLY used to display text contents but {!! $username !!} is used to display CONTENT with HTML tags if EXISTS. |
|