芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/resources/views/admin/transactions/index.blade.php
@extends('admin.layouts.master') @section('title', __('Transactions')) @section('head_style')
@endsection @section('page_content')
{{ __('Date Range') }}
{{ __('Currency') }}
{{ __('All') }}
@if(!empty($currencies)) @foreach($currencies as $value)
id == $currency) ? 'selected' : '' }}> {{ $value->code }}
@endforeach @endif
{{ __('Status') }}
{{ __('All') }}
@if(!empty($statuses)) @foreach($statuses as $value)
{{ (($value == 'Blocked') ? "Cancelled" : (($value == 'Refund') ? "Refunded" : $value )) }}
@endforeach @endif
{{ __('Type') }}
{{ __('All') }}
@if(!empty($transactionTypes)) @foreach($transactionTypes as $value)
id == $type) ? 'selected' : '' }}> {{ ($value->name == "Withdrawal") ? "Payout" : str_replace('_', ' ', $value->name) }}
@endforeach @endif
{{ __('User') }}
{{ __('Filter') }}
{{ __('All Transactions') }}
{{ __('CSV') }}
{{ __('PDF') }}
{!! $dataTable->table(['class' => 'table table-striped table-hover dt-responsive transactions', 'width' => '100%', 'cellspacing' => '0']) !!}
@endsection @push('extra_body_scripts') {!! $dataTable->scripts() !!} @endpush