@extends('panel.layout.app') @section('title', 'Marketplace Payment') @section('titlebar_actions', '') @section('content')

{{ $success ? __('Payment Success') : __('Payment Failed') }}

{{ __('Add-on') }}

{{ $extension->name }}

{{ __('Total') }}:

@if (currencyShouldDisplayOnRight(currency()->symbol)) {{ $extension->price }}{{ currency()->symbol }} @else {{ currency()->symbol }}{{ $extension->price }} @endif

@if ($success) @lang('Your payment is success, you can install your extension.') {{ __('Install Now') }} @else @lang('Your payment is unsuccessful') @if ($app_is_demo) {{ __('Buy Now') }} @else @php $is_license = $extension->licensed == 1; @endphp {{ __('Buy Now') }} @endif @endif
@endsection @push('script') @endpush