@extends('template.layout') @section('style') @endsection @section('content')
| # | Code | Name | Price Buy | Price Sell | Qty | Total Cost | Total Worth |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $stock->item->code }} | {{ $stock->item->name }} | {{ number_format($stock->price_buy, 2) }} | {{ $stock->price_sell }} | {{ $stock->qty }} | {{ number_format($stock->price_buy * $stock->qty,2) }} | {{ number_format($stock->price_sell * $stock->qty,2) }} | @php $total_qty += $stock->qty; $total_worth += $stock->price_sell * $stock->qty; $total_cost += $stock->price_buy * $stock->qty; @endphp