@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Checkout']) @endsection @section('content')

{{ __('Cart Items') }} {{ Cart::count() }}

    @foreach(Cart::content() as $row)
  • {{ $row->name }} x {{ $row->qty }}
    @foreach ($row->options->attribute ?? [] as $item) {{ $item->attribute->name ?? '' }} - {{ $item->variation->name ?? '' }} @endforeach @foreach ($row->options->options ?? [] as $item)
    {{ $item->name ?? '' }} @endforeach
    {{ number_format($row->price,2) }}
  • @endforeach
  • {{ __('Tax') }} {{ number_format(Cart::tax(),2) }}
  • @if(Cart::weight() > 0)
  • {{ __('Weight') }} {{ Cart::weight() }}g
  • @endif @if(Cart::discount() > 0)
  • {{ __('Discount') }}
    -{{ number_format(Cart::discount(),2) }}
  • @endif @if(Cart::weight() > 0)
  • {{ __('Shipping') }}
  • @endif
  • {{ __('Total') }} {{ number_format(Cart::total(),2) }}
@csrf

{{ __('Billing address') }}

@csrf
{{ __('Please enter customer name.') }}
{{ __('Please enter a valid email address for shipping updates.') }}
{{ __('Please enter a valid phone number') }}
{{ __('Please enter your shipping address.') }}
{{ __('Zip code required.') }}

{{ __('Payment Status') }}

{{ __('Payment Method') }}

@foreach ($posts as $key=> $item) @php $data=json_decode($item->content); @endphp
@endforeach

{{ __('Shipping Method') }}


@endsection @push('js') @endpush