如何在我的视图 blade 模板中删除单词 sum(total)
How to delete words sum(total) in my view blade template
$cek = DB::table('temp_obat')
->selectRaw('sum(total)')
->where('pasien', $id)
->get();
$total = $cek;
return view ('buy/bayar',compact('pasien'));
如何删除我认为 blade 中的单词 sum(total)
?
试试这个:
$cek = DB::table('temp_obat')
->selectRaw('sum(total) as total')
->where('pasien', $id)
->get();
return view ('buy/bayar', ['cek', $cek]);
并且在模板中:
{{ $cek->total }}
$cek = DB::table('temp_obat')
->selectRaw('sum(total)')
->where('pasien', $id)
->get();
$total = $cek;
return view ('buy/bayar',compact('pasien'));
如何删除我认为 blade 中的单词 sum(total)
?
试试这个:
$cek = DB::table('temp_obat')
->selectRaw('sum(total) as total')
->where('pasien', $id)
->get();
return view ('buy/bayar', ['cek', $cek]);
并且在模板中:
{{ $cek->total }}