@extends('frontend.layouts.user.master') @section('title', $page_title) @section('content')
@foreach ($orders as $order) @foreach ($order->invoices as $id => $invoice) @endforeach @endforeach
Order No Date & Time Payment Amount Action
{{ ++$id }} {{ $invoice->order->order_number }} {{ $invoice->created_at->format('d M Y, h:i A') }} {{ $invoice->order->total_amount }} View Invoice
@endsection