如何在我的视图刀片模板中删除单词sum(total)

$cek = DB::table('temp_obat')
            ->selectRaw('sum(total)')
            ->where('pasien', $id)
            ->get();
$total = $cek;

return view ('buy/bayar',compact('pasien'));

enter image description here

How can I delete the words sum(total) in my view blade?

Try this:

$cek = DB::table('temp_obat')
        ->selectRaw('sum(total) as total')
        ->where('pasien', $id)
        ->get();

return view ('buy/bayar', ['cek', $cek]);

And in the template:

{{ $cek->total }}