@extends('backend/template/template') @section('content')
Here are all Order.
| #SL | Transaction ID | Customer Name | Customer Email | Customer Phone | Customer Address | City | Status | Amount | Currency | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $sl }} | {{ $order->transaction_id }} | {{ $order->customer_name }} | {{ $order->customer_email }} | {{ $order->customer_phone }} | {{ $order->customer_address }} | {{ $order->city }} | @if ($order->status == 1) Completed @elseif($order->status == 0) Pending @else Unknown @endif | {{ $order->amount }} | {{ $order->currency }} | {{-- View Edit --}} |