@extends('layouts.app') @section('title', $warehouse->name) @section('breadcrumb')
{{ $warehouse->code }}
@if($warehouse->is_default)Default@endif
{{ $warehouse->is_active ? 'Active' : 'Inactive' }}
| Name | {{ $warehouse->name }} |
| Code | {{ $warehouse->code }} |
| Manager | {{ $warehouse->manager_name ?? '—' }} |
| Phone | {{ $warehouse->phone ?? '—' }} |
| Address | {{ $warehouse->address ?? '—' }} |
| Product / Variant | SKU | Category | Available | Reserved |
|---|---|---|---|---|
|
{{ $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 | ||||