@extends('layouts.user-layout') @section('title', 'All Payment History ') @section('content')
  • Order TO:
  • {{$payment_history_detail->user->first_name ? : ''}}

    + {{$payment_history_detail->user->phone_number ? : ''}}
  • ORDER No:{{$payment_history_detail->order_number ? : ''}}
  • {{--
  • Account:0000 12345 678900
  • --}} @php use Carbon\Carbon; @endphp
  • Date:{{$formattedDate = Carbon::parse($payment_history_detail->created_at)->format('d/m/Y')}}
SL Order Number PRICE Total Items Order Status Payment Method
{{$payment_history_detail->id ? : ''}} {{$payment_history_detail->order_number ?? ''}} $ {{number_format($payment_history_detail->total_price) ? : ''}} {{$payment_history_detail->total_items ? : ''}} {{ $payment_history_detail->order_status }} {{$payment_history_detail->payment_method ? : ''}}
@endsection