@extends('layouts.app') @section('title', 'Raw Material Details') @section('content')

Raw Material Details

@include('manufacturing.partials.navigation')
{{ $model->name }}
Material Code {{ $model->material_code }}
Name {{ $model->name }}
Category {{ $model->category ?? 'N/A' }}
Unit of Measure {{ $model->unit_of_measure }}
Secondary Unit {{ $model->secondary_unit ?? 'N/A' }}
Conversion Factor {{ $model->conversion_factor ?? 1 }}
Minimum Stock {{ number_format($model->minimum_stock_level ?? 0, 2) }} {{ $model->unit_of_measure }}
Maximum Stock {{ number_format($model->maximum_stock_level ?? 0, 2) }} {{ $model->unit_of_measure }}
Reorder Point {{ number_format($model->reorder_point ?? 0, 2) }} {{ $model->unit_of_measure }}
Standard Cost KES {{ number_format($model->standard_cost ?? 0, 2) }}
Last Purchase Price KES {{ number_format($model->last_purchase_price ?? 0, 2) }}
Status {{ $model->is_active ? 'Active' : 'Inactive' }}
Stock Metrics

{{ number_format($model->current_stock ?? 0, 2) }}

Current Stock

{{ number_format($model->minimum_stock_level ?? 0, 2) }}

Min Stock

{{ number_format($model->reorder_point ?? 0, 2) }}

Reorder Point

{{ ($model->current_stock ?? 0) <= ($model->reorder_point ?? 0) ? 'Low' : 'OK' }}

Stock Status
@endsection