@extends('layouts.app') @section('title', $warehouse->name) @section('breadcrumb') @endsection @section('content')
{{ number_format($totalItems) }}
Unique Items
৳{{ number_format($totalStockValue, 0) }}
Stock Value
Details
Name{{ $warehouse->name }}
Code{{ $warehouse->code }}
Manager{{ $warehouse->manager_name ?? '—' }}
Phone{{ $warehouse->phone ?? '—' }}
Address{{ $warehouse->address ?? '—' }}
Current Stock
@forelse($stocks as $stock) @empty @endforelse
Product / VariantSKUCategoryAvailableReserved
{{ $stock->productVariant->product->name }}
{{ $stock->productVariant->variant_name }}
{{ $stock->productVariant->sku }} {{ $stock->productVariant->product->category->name }} {{ $stock->available_qty }} {{ $stock->reserved_qty > 0 ? $stock->reserved_qty : '—' }}
No stock in this warehouse
@if($stocks->hasPages())@endif
@endsection