@extends('frontend.components.layout') @section('title') My Order @endsection @section('topmenu') @include('frontend.components.topmenu') @endsection @section('content')
@include('frontend.customer.leftmenu')
{{--
--}}
@foreach ($orders as $order) @if ($order->customer_phone === $customer->phone) @endif @endforeach
Order No Tracking Code Date Customer info Payment Payment Status Total Delivery Status
{{ $order->order_no }} {{ $order->tracking_code }} {{ $order->date }} {{ $order->customer_name }}
{{ $order->customer_phone }}
{{ $order->shipping_address }}
{{ $order->payment_type }} {{ $order->payment_status }} {{ $order->total }} {{ $order->delivery_status }}
{{--
--}}
@endsection @push('js') @endpush