@extends('layouts.app') @section('title', 'Checkout') @section('content')

Home/Marketplace/Product/Checkout

@csrf

Checkout

@if ($errors->any()) @foreach ($errors->all() as $item)
{{ $item }}
@endforeach @endif @if (\Session::has('stripe_error'))
{!! \Session::get('success') !!}
@endif

Shipping Information

@if (Auth::check())
Select Address
@endif

Review your cart

@php $total = 0 @endphp @if (session('cart')) @foreach (session('cart') as $id => $details) @php $total += $details['price'] @endphp
{{ $details['name'] }}

{{ $details['name'] }}

@foreach ($details['variation'] as $key => $value)

{{ $value['name'] }} - ${{ $value['price'] }} * {{ $value['qty'] }} units = ${{ $value['price'] * $value['qty'] }}

@endforeach

${{ $details['price'] }}

@endforeach @endif
Subtotal ${{ $total }}
Shipping ${{ $helper->shipppingAmount() }}
Sales Tax $0.00
Total ${{ $total + $helper->shipppingAmount() }}
Loader

Secure Checkout - SSL Encrypted

Ensuring your financial and personal details are secure during every transaction.

@endsection @push('css') @endpush @push('js') {{-- @include('payment.paypal') --}} @include('payment.stripe') @endpush