@extends('layouts.app') @section('title', $app_setting['name'] . ' | ' . __('Transaction List')) @section('content')
| # | {{ __('Enrollment ID') }} | {{ __('Course') }} | {{ __('Student Phone') }} | {{ __('Payment Amount') }} | {{ __('Payment Method') }} | {{ __('Payment Status') }} | {{ __('Paid At') }} |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $transaction->enrollment_id ? '#' . $transaction->enrollment_id : 'N/A' }} | {{ $transaction->course_title }} | {{ $transaction->user_phone }} | @if ($transaction->payment_amount != null || $transaction->payable_amount != null) @if ($app_setting['currency_position'] == 'Left') {{ $app_setting['currency_symbol'] }}{{ $transaction->payment_amount ? $transaction->payment_amount : $transaction->payable_amount }} @else {{ $transaction->payment_amount ? $transaction->payment_amount : $transaction->payable_amount }}{{ $app_setting['currency_symbol'] }} @endif @else N/A @endif | {{ $transaction->payment_method }} |
@if (!$transaction->is_paid)
{{ __('Unpaid') }}
{{ __('Paid') }}
|
{{ $transaction->paid_at ?? '-' }} |
| {{ __('No data found') }} | |||||||