@extends('home.layouts.index') @section('title') سبد خرید @endsection @section('description') @endsection @section('keywords') @endsection @section('style') @endsection @section('script') @endsection @section('content')
در حال بارگذاری سبد خرید...
۱
بررسی سبد خرید
۲
اطلاعات ارسال
۳
پرداخت
@foreach($carts as $key => $cart)
{{$cart->Product->name ?? ''}}
{{--
--}} {{-- رنگ:--}} {{--
{{$cart->Color->name ?? ''}}
--}} {{--
--}}

{{ number_format(product_price_for_user_normal($cart->product_id,$cart->variation_id)[2] * $cart->quantity) }} تومان

@endforeach
جمع کل: {{number_format(calculateCartPrice()['original_price'])}}
@if(session()->exists('coupon'))
تخفیف: {{number_format(session()->get('coupon.amount'))}} تومان
@endif
تخفیف کالا ها: {{number_format(calculateCartPrice()['total_sale'])}} تومان
مبلغ نهایی: {{number_format(calculateCartPrice()['sale_price']- session()->get('coupon.amount'))}}
@endsection