@foreach($orders as $order) @endforeach
{{ __('User ID') }} {{ __('Order From') }} {{ __('Type') }} {{ __('Price') }} {{ __('Revision') }} {{ __('Payment Gateway') }} {{ __('Payment Status') }} {{ __('Status') }} {{ __('Order Date') }} {{ __('Action') }}
{{ $order->user_id ?? '' }} {{ ucfirst(__($order->is_project_job)) }} {{ ucfirst(__($order->is_fixed_hourly ?? 'Fixed')) }} {{ float_amount_with_currency_symbol($order->price) }} {{ $order->revision }} @if($order->payment_gateway == 'manual_payment') {{ ucfirst(str_replace('_',' ',$order->payment_gateway)) }} @else {{ $order->payment_gateway == 'authorize_dot_net' ? __('Authorize.Net') : ucfirst($order->payment_gateway) }} @endif @if($order->payment_gateway != 'manual_payment' && $order->payment_status == 'pending') {{ __('Payment Failed') }} @elseif($order->payment_status == 'pending') {{ ucfirst(__($order->payment_status)) }} @can('order-manual-payment-status-update') {{ __('Update') }} @endcan @else {{ ucfirst(__($order->payment_status)) }} @endif {{ $order->created_at->format('Y-m-d') ?? '' }} @can('order-details') @endcan