@extends('website.layouts.app') @section('title') {{ __('plan') }} @endsection @section('main')
| # | {{ __('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 | @if ($transaction->currency_symbol) {{ $transaction->currency_symbol }} {{ $transaction->amount }} @else {{ currencyAmountShort($transaction->amount) }} {{ currentCurrencyCode() }} @endif | @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 |