@extends('frontend.frontend-page-master') @section('page-title') {{__('Payment Success For:')}} {{$booking->appointment ? optional(optional($booking->appointment)->lang)->title : __('Untitled') }} @endsection @section('content')

{{get_static_option('appointment_booking_'.$user_select_lang_slug.'_success_page_title' )}}

{{get_static_option('appointment_booking_' . $user_select_lang_slug . '_success_page_description')}}

{{__('Appointment Details')}}

  • {{__('Id')}} : #{{$booking->id}}
  • {{__('Name')}} : {{$booking->name}}
  • {{__('Email')}} : {{$booking->email}}
  • {{__('Fee')}} : {{amount_with_currency_symbol($booking->total)}}
  • {{__('Payment Gateway')}} : {{__(str_replace('_',' ',$booking->payment_gateway))}}
  • {{__('Payment Status')}} : {{__($booking->payment_status)}}
  • {{__('Transaction Id')}} : {{$booking->transaction_id}}
  • {{__('Appointment Status')}} : {{$booking->status}}
@if(auth()->guard('web')->check()) {{__('Go To Dashboard')}} @else {{__('Back To Home')}} @endif
@endsection