@extends('admin.layouts.master') @section('title', 'عرض صنف') @section('css') @endsection @section('content') @php $badge = $item->status ? 'success' : 'secondary'; $statusText = $item->status ? 'نشط' : 'غير نشط'; $typeMap = ['store' => 'مخزني', 'consumption' => 'استهلاكي', 'custody' => 'عهدة']; $typeText = $typeMap[$item->type] ?? $item->type; $imgSrc = $item->image ? asset('storage/'.$item->image) : asset('images/no-image.png'); $hasBarcode = !empty($item->barcode); $fmt = fn ($v) => $v !== null ? number_format((float)$v, 2) : '-'; // اختياري: منع الحذف لو له children (لو عندك relation) $childrenCount = method_exists($item, 'children') ? ($item->children()->count() ?? 0) : 0; @endphp
@include('admin.Alerts')