@extends('layouts.app') @section('content')

Stock Report

🔽 Filters

Closing stock (By purchase price)

MWK {{ number_format($totalPurchaseValue, 2) }}

Closing stock (By sale price)

MWK {{ number_format($totalSaleValue, 2) }}

Potential profit

MWK {{ number_format($potentialProfit, 2) }}

Profit Margin %

{{ number_format($profitMargin, 2) }}

Show
entries
📄 Export CSV 📊 Export Excel 📑 Export PDF
@forelse ($products as $product) @empty @endforelse
ActionSKUProductVariationCategoryLocationUnit Selling PriceCurrent stockCurrent Stock Value (By purchase price)Current Stock Value (By sale price)
🔄 Product stock history {{ $product->sku }} {{ $product->name }} {{ $product->product_type ?? '' }} {{ $product->category->name ?? 'N/A' }} {{ $product->business_location }} MWK {{ number_format($product->selling_price, 2) }} {{ number_format($product->current_stock, 2) }} {{ $product->unit->name ?? 'Each' }} MWK {{ number_format($product->current_stock * $product->purchase_price, 2) }} MWK {{ number_format($product->current_stock * $product->selling_price, 2) }}
No products found
@if($products->hasPages())
Showing {{ $products->firstItem() }} to {{ $products->lastItem() }} of {{ $products->total() }} results
{!! $products->appends(request()->query())->links() !!}
@endif
@endsection