@extends('layouts.store.app') @section('pageTitle', trans('store.checkout')) @section('content') @include('store.partials.common.breadcrumb')
@include('dashboard.partials._errors')

@lang('store.billingDetails')

{{ csrf_field() }} {{ method_field('post') }}

@lang('store.additionalInformation')

@push('head') @endpush
@if(count($cartItems)>=1)

@lang('store.cartTotals')

@if(session('can_view_prices')) @endif @include('store.partials.cart.checkoutItem') @if(session('can_view_prices')) @endif
@lang('store.product') @lang('store.quantity')@lang('store.price')
@lang('store.productsCount') {{count(session()->get('cartItems', []))}}
@lang('store.totalQty') {{collect(session()->get('cartItems', []))->sum('emp_qty')}}
@lang('store.total') {{number_format(collect(session()->get('cartItems', []))->sum('total'), 2)}} @lang('store.sar')
@lang('store.total_tax') {{number_format(collect(session()->get('cartItems', []))->sum('total_tax'), 2)}} @lang('store.sar')
@lang('store.yourDetailsWill')
@if(session('can_view_prices')) @include('store.partials.cart.miniCartFooterMsg') @endif @include('store.partials.checkout.placeOrderBtn') @else @include("store.partials.cart.emptyCartMsg") @endif
@if(session('can_view_prices'))

طرق الدفع

الدفع بالتحويل البنكي

الدفع بالتحويل البنكي

@endif
@endsection