{{-- @extends('layout') --}} @extends('layouts.main') @section('title', 'My Orders') @section('extra-css') @endsection {{-- @section('content') --}} @section('main-section') @component('components.breadcrumbs') Home My Orders @endcomponent {{--
@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif @if(count($errors) > 0)
@endif

My Orders

@foreach ($orders as $order)
Order Placed
{{ presentDate($order->created_at) }}
Order ID
{{ $counter }}{{ $order->id }}
Total
Rs.{{ $order->billing_total }}
@foreach ($order->products as $product)
Product Image
Rs. {{ $product->price }}
Quantity: {{ $product->pivot->quantity }}
@endforeach
@endforeach
--}}

My Orders

@endsection @section('extra-js') @endsection