9

I am new in blade template. How i comment here?

PHP i can comment like this

<?php // echo $games;?>

Laravel Blade

{{ $game }}

Faridul Khan
  • 1,741
  • 1
  • 16
  • 27
  • Does this answer your question? [Laravel - Blade comments , blade rendering causing page to crash](https://stackoverflow.com/questions/27830200/laravel-blade-comments-blade-rendering-causing-page-to-crash) – TonyArra Feb 23 '23 at 18:45

1 Answers1

20

In blade syntax, a comment starts with {{-- and ends with --}}

{{-- this is a comment --}}

But to comment out multiple lines, use standard PHP block comments instead, like:

<?php /* 
@if ($condition)
    {{ HTML::form("foo") }};
@endif
*/ ?> 

And never nest Blade and/or PHP code inside of Blade comments.

See also stackoverflow.com/Why Blade comment causes page to crash?

Top-Master
  • 7,611
  • 5
  • 39
  • 71
twoTimesAgnew
  • 1,376
  • 1
  • 11
  • 15