@extends('layouts.app') @section('content')
{{-- --}}

Billing details

@php $total = 0 @endphp @foreach($carts as $cart) @php $total = $total + checkDiscountedPrice($cart->product) * $cart->quantity; @endphp @endforeach

Order Summary

Product Quantity
Dedicated Hosting {{count($carts)}}
Subtotal: {!! getPrice($total) !!}
Setup Fee: $0.00
Discount: -$0.00
Total: {!! getPrice($total) !!}
@endsection