@extends('frontend.layout.dashboard-master') @section('site_title', __('Buy Connects')) @section('style') @endsection @section('content') @php $feeType = get_static_option('transaction_fee_type') ?? ''; $feeCharge = get_static_option('transaction_fee_charge') ?? 0; $feeLabel = $feeType === 'percentage' ? $feeCharge . '%' : float_amount_with_currency_symbol($feeCharge); @endphp {{-- Page Header --}}
{{ __('Purchase additional connects for your active subscription') }}
{{ __('Current Connects') }}
{{ $total_limit }}
{{ __('Active Plan') }}
{{ $active_subscription->subscription->title ?? __('None') }}
{{ __('Expires') }}
{{ $active_subscription ? \Carbon\Carbon::parse($active_subscription->expire_date)->format('M d, Y') : '—' }}
| {{ __('Date') }} | {{ __('Connects') }} | {{ __('Amount') }} | {{ __('Gateway') }} | {{ __('Status') }} |
|---|---|---|---|---|
| {{ $purchase->created_at->format('M d, Y H:i') }} | {{ $purchase->connects }} | {{ float_amount_with_currency_symbol($purchase->total) }} | {{ str_replace('_', ' ', $purchase->payment_gateway) }} | @if($purchase->payment_status === 'complete') {{ __('Complete') }} @else {{ __('Pending') }} @endif |