@extends('frontend.layouts.app-dashboard') @section('content')
Order History

The order information provided is meant to provide a historical record but may not be fully accurate as some payments may not be included.
Showing Orders (All Months)
@if( isset( $orders ) && count( $orders ) > 0) @foreach( $orders as $order ) @endforeach @else @endif
Invoice no. Order Details Date Price
{{$order->invoice_no}} {{$order->additional_information ?? 'No info'}} {{date('m/d/Y',strtotime($order->created_at) )}} ${{$order->total_price}}
No orders yet!
@endsection