@extends('layouts.app') @section('title', 'Category Details') @section('content')
Category details and products
{{ $category->products_count ?? 0 }} Products
{{ $category->created_at->format('M d, Y') }}
{{ $category->updated_at->format('M d, Y') }}
| ID | Name | Supplier | Purchase Price | Sale Price | Quantity | Stock Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $product->id }} |
{{ $product->name }}
|
@if($product->supplier) {{ $product->supplier->name }} @else No Supplier @endif | BDT{{ number_format($product->purchase_price ?? 0, 2) }} | BDT{{ number_format($product->sale_price ?? 0, 2) }} | {{ $product->quantity }} | @if($product->quantity < 10) Low Stock @elseif($product->quantity < 50) Medium Stock @else In Stock @endif |