@extends('master.front')
@section('title')
{{__('Payment')}}
@endsection
@section('content')
{{__('Review Your Order')}} :
{{__('Invoice address')}} :
@php
$ship = Session::get('shipping_address');
$bill = Session::get('billing_address');
@endphp
- {{__('Name')}}: {{$ship['ship_first_name']}} {{$ship['ship_last_name']}}
@if (PriceHelper::CheckDigital())
- {{__('Address')}}: {{$ship['ship_address1']}} {{$ship['ship_address2']}}
@endif
- {{__('Phone')}}: {{$ship['ship_phone']}}
{{__('Shipping address')}} :
- {{__('Name')}}: {{$bill['bill_first_name']}} {{$bill['bill_last_name']}}
@if (PriceHelper::CheckDigital())
- {{__('Address')}}: {{$ship['ship_address1']}} {{$ship['ship_address2']}}
@endif
- {{__('Phone')}}: {{$bill['bill_phone']}}
@if (DB::table('states')->whereStatus(1)->count() > 0)
{{__('please select shipping state')}}
@error('state_id')
{{$message}}
@enderror
@endif
{{__('Pay with')}} :
@php
$gateways = DB::table('payment_settings')->whereStatus(1)->get();
@endphp
@foreach ($gateways as $gateway)
@if (PriceHelper::CheckDigitalPaymentGateway())
@if ($gateway->unique_keyword != 'cod')
@endif
@else
@endif
@endforeach
@include('includes.checkout_modal')
@include('includes.checkout_sitebar',$cart)
@endsection