@extends('backend.layout.master') @section('title', __('Dashboard')) @section('content')
| {{ __('User ID') }} | {{ __('Type') }} | {{ __('Price') }} | {{ __('Payment Gateway') }} | {{ __('Payment Status') }} | {{ __('Status') }} | {{ __('Order Date') }} |
|---|---|---|---|---|---|---|
| {{ $order->user_id ?? '' }} | {{ ucfirst($order->is_project_job) }} | {{ float_amount_with_currency_symbol($order->price) }} | @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)) }} @else {{ ucfirst(__($order->payment_status)) }} @endif | |
{{ $order->created_at->format('Y-m-d') ?? '' }} |