@extends("admin.layouts.sellermastersoyuz") @section('title', __('Pay for Ad')) @section('body') @component('seller.components.breadcumb', ['secondactive' => 'active']) @slot('heading') {{ __('Pay for Ad') }} @endslot @slot('menu1') {{ __('Ads') }} @endslot @endcomponent
{{ __('Complete Payment') }}

{{ __('Title') }}: {{ $ad->title }}

{{ __('Duration') }}: {{ (int) $ad->ad_duration_days }} {{ __('days') }}

{{ __('Amount') }}: {{ $ad->ad_currency ?: 'INR' }} {{ number_format((float) $ad->ad_amount, 2) }}

{{ __('Current status') }}: {{ ucfirst($ad->ad_payment_status) }}

@if(session('error'))
{{ session('error') }}
@endif @if($ad->ad_payment_status == 'paid')
{{ __('Payment already completed.') }}
{{ __('Back to my ads') }} @else
@if($razorpayKey && $razorpayOrderId)
{{ __('Or record payment manually (bank/manual)') }}
@csrf
@else
{{ __('Razorpay is not configured. Submit a manual reference below.') }}
@csrf
@endif {{ __('Cancel') }} @endif
@if($ad->ad_payment_status != 'paid' && $razorpayKey && $razorpayOrderId) @endif @endsection