@extends('dashboard.layouts.app') @section('content')
Created on {{ $purchase->created_at->format('M d, Y') }}
Subtotal
Shipping Cost
Total Order Value
Order Name
Assigned Staff
@forelse ($purchase->requestedStaffs as $staff) {{ $staff->first_name }} {{$staff->last_name}} @emptyNo staff members have been assigned to this purchase order.
@endforelseRequired By
| # | Vendor Name | Phone | Location | Tax | Shipping Cost |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $vendor->name }} | {{ $vendor->phone }} | {{ $vendor->location }} | {{ $vendor->tax }} | {{ $vendor->shipping_cost }} |
| # | Product | Category | Serial | Part No | Price | Qty | Amount | Tax % |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $detail->product_name }} | {{ $detail->category_name }} | {{ $detail->serial_number }} | {{ $detail->part_no }} | ${{ number_format($detail->price, 2) }} | {{ $detail->quantity }} | ${{ number_format($detail->amount, 2) }} | {{ $detail->tax_rate }}% |
{{ basename($path) }}
View / Download