@extends('layouts/base_view') @section('title') {!! $variables['header_routes'] !!} @endsection @section('content')

{{ $variables['judul'] }}

Kode : {{ $data->code }}
Nama : {{ $data->name }}
Grup Menu : {{ $data->menu_group ?: '-' }}
Kode PLU : {{ $data->plu_code ?: '-' }}
Kategori : {{ $data->category ?: '-' }}
Harga : {{ $data->formatted_price }}
Status : @if($data->is_active) Aktif @else Nonaktif @endif
Dibuat Oleh : {{ $data->creator ? $data->creator->fullname : 'System' }} ({{ $data->created_at ? $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->description)
Deskripsi : {{ $data->description }}
@endif
@endsection