@extends('front.layout.app') @section('content')

CHECKOUT

Billing details

@csrf
{{-- CONTINUE TO DELIVERY--}}

ORDER SUMMARY

@foreach(\Illuminate\Support\Facades\Session::all()['cart'] as $item)
img

{{$item['name'] ?? ''}}

Color: Pink

Quantity: {{$item['quantity'] ?? ''}}

₦{{number_format($item['price'] ?? '')}}

@endforeach @php $total = 0; $savedMoney = 0; foreach (\Illuminate\Support\Facades\Session::all()['cart'] as $item){ $total += $item['price'] * $item['quantity']; $savedMoney += $item['old_price'] * $item['quantity']; } @endphp
  • Subtotal ({{ count(session('cart')) }} Items) ₦{{number_format($total,2)}}
  • Savings -₦{{number_format($savedMoney,2)}}
  • Shipping ₦0.00
  • total ₦{{number_format($total,2)}}
{{--
--}} {{--
--}} {{--

Payment method

--}} {{--

All transactions are secured & encrypted

--}} {{--
--}} {{--

Credit card

--}} {{--

We accept all major credit cards

--}} {{-- --}} {{--

Enter your card details

--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{-- --}}{{-- --}} {{-- PAY NOW--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
@endsection