@extends('layouts.app') @section('title', __('Purchase').' '.$purchase->purchase_number) @section('content')
| {{ __('Item') }} | {{ __('Unit') }} | {{ __('Qty') }} | {{ __('Cost') }} | {{ __('Total') }} |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->unit }} | {{ $item->quantity }} | {{ number_format($item->unit_cost,2) }} | {{ number_format($item->line_total,2) }} |