@extends('admin.layout.admin') @section("title"," Dashboard | Wishours") @section("content")

Orders Manage Orders

Orders List

@php $count = 1; @endphp @if($orders) @foreach($orders as $order) @if($order->payment_method == 'Online') @if($order->online_payment_status == 'success') @else @endif @else @endif @endforeach @else @endif
# Order ID Order Date Customer Name Customer Email Ordered Product Ordered Amount Payment Method Payment Status Actions
{{ $order->id }} {{ $order->created_at }} {{ $order->name }} {{ $order->user_email }} @foreach($order->orders as $pro)

{{ $pro->product_code }}
Product Qty : {{ $pro->product_qty }}

@endforeach
{{ $order->grand_total }} {{ $order->payment_method }}{{ $order->payment_status }}{{ $order->payment_status }} ( Payment Failed ){{ $order->payment_status }}View Details
No Categories Found.
# Order ID Order Date Customer Name Customer Email Ordered Product Ordered Amount Payment Method Actions
@endsection