@extends('template.layout') @section('style') @endsection @section('content')
| # | Code | Name | Price Buy | Price Sell | Qty | Total | Action |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->code }} | {{ $item->item->name }} | {{ number_format($item->price_buy, 2) }} | {{ number_format($item->price_sell, 2) }} | {{ $item->qty }} | {{ number_format($item->price_buy * $item->qty, 2) }} |
|