@extends('frontend.layout.applayout') @section('title', 'Order Details') @section('main-content')
@include('components.customer-profile')
@csrf @foreach ($order->items as $key => $item) @endforeach
Sl Images Product Name SKU Quantity Price Total Amount Actions
{{ $key + 1 }} {{ $item->name }} {{ $item->sku }}
${{ number_format($item->price, 2) }} ${{ number_format($item->total_amount, 2) }}
Add New Item:
@push('scripts') @endpush @endsection