Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

blade template vs php core

//core PHP syntax
<?PHP 
  echo $name; 
?> 
  
//blade template syntax
  {{$name}} // html cannot decode, display as a text node. 
  {!!$name!!} //html can decode ,  
Display as a element node. 

 
PREVIOUS NEXT
Tagged: #blade #template #php #core
ADD COMMENT
Topic
Name
5+7 =