@extends('front.layout.app') @section('title', 'Account') @section('extra-css') @endsection @section('content')
@include('front.partials.sidemenu')

My Orders

@if($orders != null && count($orders) > 0) @foreach($orders as $order) @endforeach
Order# Date Order Total Order Status Action

{{$order->order_no ?? ''}}

{{$order->created_at->format('d/m/Y') ?? ''}}

${{$order->total_amount ?? ''}}

{{$order->order_status ?? ''}}

View Order
@else

You did not placed any order

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