@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

Order Amount $ 🛒

Same Day Delivery 🚚

{{ $display_total }}

Shipping Details

@endsection

Scroll to Top