@extends('panel.layout.app') @section('title', __('Payment')) @section('additional_css') @endsection @section('content')

{{__('Payment Succesful')}}

{{__('Thanks for your purchase! Now, you can explore our AI tools and start generating content in seconds.')}}

@if($checkoutresult->getStatus() == 'success') @if($checkoutresult->getSubscriptionStatus() == 'ACTIVE' || $checkoutresult->getSubscriptionStatus() == 'active')

{{__('Subscription is ACTIVE')}}

{{__('Reference ID')}}:

{{ $checkoutresult->getReferenceCode() }}

{{__('Please save reference ID')}}
@else

{{__('Subscription status')}} : {{$checkoutresult->getSubscriptionStatus()}}

@endif @else

{{__('Error Code')}}: {{ $checkoutresult->getErrorCode() }}

{{ $checkoutresult->getErrorMessage() }}

@endif

{{__('Generate New Content')}}

@endsection