@extends('themes.basic.layouts.single')
@section('noindex', true)
@section('header_title', translate('Checkout'))
@section('title', translate('Checkout'))
@section('breadcrumbs', Breadcrumbs::render('checkout', $trx))
@section('header_v3', true)
@section('content')
@if ($trx->isUnpaid())
{{ translate('Thank you for your purchase. Your payment has been completed successfully.') }}
{{ translate('View My Purchases') }} @elseif($trx->isTypeDeposit()){{ translate('Payment has been completed and your deposit has been processed successfully.') }}
{{ translate('View My Balance') }} @elseif($trx->isTypeSubscription()){{ translate('Payment has been completed and your subscription has been created successfully.') }}
{{ translate('View My Subscription') }} @elseif($trx->isTypeSupportPurchase()){{ translate('Payment has been completed and your support has been purchased successfully.') }}
{{ translate('View My Purchases') }} @elseif($trx->isTypeSupportExtend()){{ translate('Payment has been completed and your support has been extended successfully.') }}
{{ translate('View My Purchases') }} @endif