@extends('frontend.bigbag.layouts.app') @push('css') @endpush @section('content')

{{ __('Checkout') }}

@csrf
@if(env('MULTILEVEL_CUSTOMER_REGISTER') == true) @if(!Auth::check())

{{ __('Are you a returning customer?') }} {{ __('Click here to login') }}

@endif @endif

{{ __('Do you have a coupon code?') }} {{ __('Click here to apply') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('user_limit'))
  • {{ Session::get('user_limit') }}
@endif @if(Session::has('payment_fail')) @endif

{{ __('Billing Details') }}

@if(env('MULTILEVEL_CUSTOMER_REGISTER') == true) @if(!Auth::check())
@endif @endif @if(domain_info('shop_type') == 1) @if(count($locations) > 0)
@endif
@endif
@foreach(Cart::content() as $row) @endforeach
{{ __('Product') }} {{ __('Qunantity') }} {{ __('Total') }}
{{ $row->name }}
@foreach ($row->options->attribute as $attribute)

{{ $attribute->attribute->name }} : {{ $attribute->variation->name }}

@endforeach @foreach ($row->options->options as $op)

{{ $op->name }}

@endforeach

{{ $row->qty }} {{ __('Piece') }}

x{{ $row->qty }} {{ amount_format($row->price) }}
{{ __('Shipping Charge') }}
{{ __('Tax') }}
{{ amount_format(Cart::tax()) }}
{{ __('Grand Total') }}
{{ amount_format(Cart::total()) }}
{{ __('Select Shipping Mode') }}

{{ __('Select Payment Mode') }}

    @foreach($getways as $key => $row) @php $data=json_decode($row->content); @endphp
  • @if(isset($data->additional_details))

    {{ $data->additional_details }}

    @endif
  • @endforeach
@if(Cart::count() > 0) @endif
@endsection @push('js') @endpush