@extends('admin.layouts.app') @section('panel')
@php $showStatus = request()->routeIs('admin.order.history'); @endphp @if ($showStatus) @endif @forelse($orders as $order) @if ($showStatus) @endif @empty @endforelse
@lang('Date | Pair') @lang('Order Side') @lang('Order Type') @lang('Amount | Rate') @lang('Total') @lang('Filled')@lang('Status')
{{ $order->formatted_date }}
{{ @$order->pair->symbol }}
@php echo $order->orderSideBadge; @endphp @php echo $order->orderTypeBadge; @endphp
{{ showAmount($order->amount, currencyFormat:false) }} {{ @$order->pair->coin->symbol }}
{{ showAmount($order->rate, currencyFormat:false) }} {{ @$order->pair->market->currency->symbol }}
{{ showAmount($order->amount, currencyFormat:false) }} {{ @$order->pair->coin->symbol }}
{{ getAmount($order->filed_percentage) }}% | {{ showAmount($order->filled_amount, currencyFormat:false) }} {{ @$order->pair->coin->symbol }}
@php echo $order->statusBadge; @endphp
{{ __($emptyMessage) }}
@if ($orders->hasPages()) @endif
@endsection @push('breadcrumb-plugins')
@endpush @push('script') @endpush @push('style') @endpush