@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@if (getSetting('PAYMENT_MODE') == 'disabled') {{ __('The payment mode is disabled, enable now to make the features paid') }} @endif @include('admin.transactions.search') @foreach ($transaction as $key => $value) @endforeach
{{ __('ID') }} {{ __('Username') }} {{ __('Plan') }} {{ __('Coupon') }} {{ __('Amount') }} {{ __('Currency') }} {{ __('Type') }} {{ __('Gateway') }} {{ __('Transaction ID') }} {{ __('Status') }} {{ __('Transaction Date') }}
{{ $value->id }} {{ $value->user->username }} {{ $value->plan->name }} {{ $value->coupon ? $value->coupon->name : '-' }} {{ $value->amount }} {{ $value->currency }} {{ $value->interval }} {{ $value->gateway }} {{ $value->payment_id }} {{ $value->status }} {{ $value->created_at }}
{{ __('ID') }} {{ __('Username') }} {{ __('Plan') }} {{ __('Coupon') }} {{ __('Amount') }} {{ __('Currency') }} {{ __('Type') }} {{ __('Gateway') }} {{ __('Transaction ID') }} {{ __('Status') }} {{ __('Transaction Date') }}
@endsection