这是我在Laravel中的脚本代码:
<?php
$surat_masuk = DB::table('app_suratmasuk')->where('disposisi','like','%**{{ Session::get('fid') }}**%')->count();
?>
<span class="notif-alert ">{{ $surat_masuk }}</span>
我知道,添加{{ Session::get('fid') }}
时出错了。我想问一下,如何编写代码来显示{{ Session::get('fid') }}
,因为这个脚本是PHP脚本下的PHP语法。
答案 0 :(得分:1)
使用以下代码:
$surat_masuk = DB::table('app_suratmasuk')
->where('disposisi','like', '%' . Session::get('fid') . '%')->count();