@extends('frontend.layouts.master') @section('title','Cart Page') @section('main-content')
@csrf @if(Helper::getAllProductFromCart()) @foreach(Helper::getAllProductFromCart() as $key=>$cart) @php $photo=explode(',',$cart->product['photo']); @endphp @endforeach @else @endif
PRODUCT NAME UNIT PRICE QUANTITY TOTAL
{{$photo[0]}}

{{$cart->product['title']}}

{!!($cart['summary']) !!}

Rs.{{number_format($cart['price'],2)}}
Rs.{{$cart['amount']}}
There are no any carts available. Continue shopping
@csrf
{{--
` @php $shipping=DB::table('shippings')->where('status','active')->limit(1)->get(); @endphp
--}}
    {{-- Cart Subtotal --}}
  • Cart Subtotal Rs.{{ number_format(Helper::totalCartPrice(), 2) }}
  • @php $total_amount = Helper::totalCartPrice(); @endphp {{-- Coupon Discount --}} @if(session()->has('coupon') && Session::get('coupon')['value'] > 0)
  • You Save Rs.{{ number_format(Session::get('coupon')['value'], 2) }}
  • @php $total_amount = $total_amount - Session::get('coupon')['value']; @endphp @endif {{-- Total Amount --}}
  • You Pay Rs.{{ number_format($total_amount, 2) }}

Free shiping

Orders over Rs 10000

Free Return

Within 30 days returns

Sucure Payment

100% secure payment

Best Peice

Guaranteed price

@include('frontend.layouts.newsletter') @endsection @push('styles') @endpush @push('scripts') @endpush