如何显示数据Laravel?
How to show data Laravel?
这是我在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 语法中。
使用以下代码:
$surat_masuk = DB::table('app_suratmasuk')
->where('disposisi','like', '%' . Session::get('fid') . '%')->count();
这是我在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 语法中。
使用以下代码:
$surat_masuk = DB::table('app_suratmasuk')
->where('disposisi','like', '%' . Session::get('fid') . '%')->count();