@extends('layouts/base_view') @section('title') {!! $variables['header_routes'] !!} @endsection @section('content')
Item : {{ $data->rawMaterial ? $data->rawMaterial->code . ' - ' . $data->rawMaterial->name : 'N/A' }}
UOM Utuh : {{ $data->uom_utuh }}
UOM Pakai : {{ $data->uom_pakai }}
Faktor Konversi : {{ number_format($data->conversion_factor, 4) }}
Status : @if($data->is_active) Aktif @else Nonaktif @endif
Tampilan Konversi : {{ $data->conversion_display ?? '1 ' . $data->uom_utuh . ' = ' . number_format($data->conversion_factor, 2) . ' ' . $data->uom_pakai }}
Dibuat Oleh : {{ $data->creator->fullname ?? 'System' }} ({{ $data->created_at->format('d M Y, H:i') }})
Diubah Oleh : {{ $data->modificator->fullname ?? '-' }} ({{ $data->updated_at ? $data->updated_at->format('d M Y, H:i') : '-' }})
@if($data->notes)
Catatan : {{ $data->notes }}
@endif
@method('delete') @csrf
@endsection