@extends(‘master.front’)
@section(‘content’)
@php
$cart = Session::has(‘cart’) ? Session::get(‘cart’) : [];
$total = 0;
foreach($cart as $item) { $total += ($item[‘main_price’] * $item[‘qty’]); }
$display_total = PriceHelper::setPrice($total);
@endphp
@endsection