@extends('layouts.app') @section('content')
| {{ __('Order No') }} | {{ __('Transaction Id') }} | {{ __('Last Update') }} | {{ __('Customer') }} | {{ __('Amount') }} | {{ __('Payment') }} | {{ __('Method') }} |
|---|---|---|---|---|---|---|
| {{ $row->order_no }} | {{ $row->transaction_id }} |
{{ $row->updated_at->format('d-F-Y') }}
{{ $row->updated_at->diffForHumans() }} |
@if($row->customer_id != null){{ $row->customer->name }}@else {{ __('Guest Transaction') }} @endif | {{ amount_format($row->total) }} | @if($row->payment_status==2) {{ __('Pending') }} @elseif($row->payment_status==1) {{ __('Complete') }} @elseif($row->payment_status==0) {{ __('Cancel') }} @elseif($row->payment_status==3) {{ __('Incomplete') }} @endif | {{ $row->getway->name ?? '' }} |