@extends('panel.layout.app') @section('title', __('Bank Transactions')) @section('content')
@foreach($bankOrders as $order) @if($order->status == 'Success') @else @endif {{-- --}} @endforeach
{{__('Order ID')}} {{__('Proof Of Purchase')}} {{__('Status')}} {{__('Date')}} {{__('Info')}} {{__('Plan')}} / {{__('Words')}} / {{__('Images')}} {{__('Actions')}}
{{__($order->order_id)}}
{{$order->created_at}}
Proof of Purchase {{__($order->status)}} @switch($order->status) @case("Waiting") {{__($order->status)}} @break @case("Approved") {{__($order->status)}} @break @case("Rejected") {{__($order->status)}} @break @default {{__($order->status)}} @endswitch

{{date("j.n.Y", strtotime($order->created_at))}}

{{date("H:i:s", strtotime($order->created_at))}}

{{$order->user->fullName()}}
{{__($order->type)}} / {{ ($order->type == "subscription") ? __(formatCamelCase(@$order->plan->frequency)) : __("One Time") }}
{{__('Total')}} : @if(currencyShouldDisplayOnRight(currency()->symbol)) {{$order->price}}{{currency()->symbol}} @else {{currency()->symbol}}{{$order->price}} @endif
{{@$order->plan->name ?? __('Archived Plan')}} /{{@$order->plan->total_words === "-1" ? __('Unlimited') : (@$order->plan->total_words ?? '-')}} /{{@$order->plan->total_images === "-1" ? __('Unlimited') : (@$order->plan->total_images ?? '-')}} @if($app_is_demo) @else @if($order->role != 'default') {{-- --}} @endif @endif
@endsection @section('script') @endsection