@extends('frontend.layouts.app') @section('title') {{ __('plan') }} @endsection @section('main')
@if (isset($userplan->plan->descriptions) && isset($userplan->plan->descriptions[0])) {!! $userplan->plan->descriptions[0]->description !!} @else {!! __('no_description_has_been_added_to_this_language', ['current' => $current_language_code]) !!} @endif
# | {{ __('date') }} | {{ __('plan') }} | {{ __('amount') }} | {{ __('payment_provider') }} | {{ __('payment_status') }} | |
---|---|---|---|---|---|---|
#{{ $transaction->order_id }} | {{ formatTime($transaction->created_at, 'M, d Y') }} | @if ($transaction->payment_type == 'per_job_based') {{ ucfirst(Str::replace('_', ' ', $transaction->payment_type)) }} @else {{ $transaction->plan->label }} @endif | {{ currencyConversion($transaction->usd_amount, 'USD') }} {{ currentCurrencyCode() }} | @if ($transaction->payment_provider == 'offline') {{ __('offline') }} @if (isset($transaction->manualPayment) && isset($transaction->manualPayment->name)) ({{ $transaction->manualPayment->name }}) @endif @else {{ ucfirst($transaction->payment_provider) }} @endif | @if ($transaction->payment_status == 'paid') {{ __('paid') }} @else {{ __('unpaid') }} @endif |