@extends('admin.layout') @section('content')
| Date | Total | Payment Status | Order Status | Details |
|---|---|---|---|---|
| {{convertUtf8($order->created_at->format('d-m-Y'))}} | {{$order->currency_symbol_position == 'left' ? $order->currency_symbol : ''}} {{round($order->total,2)}} {{$order->currency_symbol_position == 'right' ? $order->currency_symbol : ''}} |
@if ($order->payment_status == 'Pending' || $order->payment_status == 'pending')
{{$order->payment_status}} @else{{$order->payment_status}} @endif |
View |