应用程序没有';t在视图上阅读{}


App doesn't read {{ on views

我正试图创建一个表单来删除数据库中的一行:

 @foreach ($CostStatuses as $CostStatus)
   <tr> 
     <td class="table-text">
       <div>
         <a href="/costStatus/{{ $CostStatus->id }}/edit">
           {{ $CostStatus->status_name }}
         </a>
       </div>   
     </td>
     <td> 
       {{ Form::open(array('url' => 'CostStatus/' . $CostStatus->id, 'class' => 'pull-right')) }}
       {{ Form::hidden('_method', 'DELETE') }}
       {{ Form::submit('Delete this Nerd', array('class' => 'btn btn-warning')) }}
       {{ Form::close() }}  
     </td>  
   </tr> 
 @endforeach

但是html将{{ }}中的表单显示为用户的文本。

这是因为{{}}不执行里面的内容。使用{!! !!}

LAready修复:

只需将{{更改为{!!

相关文章: