@extends('Frontend.Master') @section('title') سبد خرید @stop @section('seo_description') سبد خرید @stop @section('key_words') @stop @section('content') @php $cart = session()->get('cart'); $TotalPrice=0; @endphp
@if($data == "nothing")

کالایی در سبد خرید شما نیست

@else

سبد خرید شما

@foreach($data as $item) @php //if($item->discount != 0) $discount = $item->discount; //else $price = $item->price; $TotalPrice += $price-$discount ; @endphp @endforeach
نام کالا کد کالا سایز تعداد قیمت واحد قیمت کل عکس عملیات
{{ $item->name }} {{ $item->id }} {{ $item->size }} {{ ($price-$discount) }} تومان {{ ($price-$discount) }}تومان imageUrl}}">

صورتحساب

جمع کل {{ number_format($TotalPrice)}}
هزینه پست {{ PP() }}
هزینه قابل پرداخت ( تومان ) {{ $TotalPrice }}
@if(!auth()->check())
لطفا روش ثبت اطلاعات را برای تکمیل خرید خودانتخاب نمایید:
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

در این روش فقط فاکتور خود را به صورت اینترنتی پرداخت می کنید و مشاوران ما در ساعات اداری با شما تماس گرفته و اطلاعات شما را جهت ارسال بسته به صورت تلفنی دریافت می کنند.

{{ csrf_field() }}
@captcha
@if ($errors->has('captcha')) {{ $errors->first('captcha') }} @endif

لطفا اطلاعات خود را جهت خرید و ارسال بسته ثبت نمایید.

{{ csrf_field() }}
@captcha
@if ($errors->has('captcha')) {{ $errors->first('captcha') }} @endif
@else
{{ csrf_field() }}
@endif @endif
@stop @section('script_area') @stop