@use('App\Helpers\Helpers') @extends('frontend.layout.master') @section('title', __('frontend::static.bookings.payment')) @section('breadcrumb') @endsection @section('content') @php $paymentMethods = Helpers::getActivePaymentMethods() ?? []; $symbol = Helpers::getDefaultCurrencySymbol(); @endphp

{{__('frontend::static.bookings.select_payment_method')}}

{{ count($checkout['services']) }} {{__('frontend::static.bookings.service_in_cart_total_amount')}} {{$symbol}}{{ Helpers::covertDefaultExchangeRate($checkout['total']['total']) }}
@csrf @method('POST')
@auth
feature

{{__('frontend::static.bookings.wallet')}}

{{__('frontend::static.bookings.available_balance')}} {{$symbol}} {{ auth()?->user()?->wallet?->balance }}

@endauth @if(count($paymentMethods)) @foreach($paymentMethods as $paymentMethod)
{{$paymentMethod['name']}}

{{$paymentMethod['name']}}

@endforeach @endif
@endsection @push('js') @endpush