@extends('layout') @section('title') {{ $seo_setting->seo_title }} @endsection @section('body-content')
@if(!auth()->guard('web')->user())

{{ __('translate.Place your Order you must be Login') }}

@endif
@if(auth()->guard('web')->user())

{{ __('translate.Shipping Details') }}

{{ __('translate.Your Order') }}

{{ __('translate.Product') }} {{ __('translate.Subtotal') }}

@foreach($carts as $cart)
  • {{ $cart->product->name }} {{ currency($cart->product->finalPrice * $cart->quantity) }}
  • {{ __('translate.Quantity') }} X {{ $cart->quantity }}
@endforeach
  • {{ __('translate.Sub Total') }} {{ currency($sub_total) }}
  • {{ __('translate.Shipping') }} (+){{ currency(0) }}
  • {{ __('translate.Total') }} {{ currency($sub_total) }}
@endif
@endsection @push('js_section') @endpush