@extends('layouts.app') @section('title', 'Sales Order Details') @section('content')
| Product | Quantity | Unit Price | Total |
|---|---|---|---|
|
{{ $item->product->name }}
{{ $item->product->sku }}
|
{{ number_format($item->quantity, 2) }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->total_price, 2) }} |
| Order Total | ${{ number_format($salesOrder->total_amount, 2) }} | ||