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

{{ $variables['judul'] }}

{{ $data->code }}
{{ $data->name }}
@if($data->is_active) Aktif @else Nonaktif @endif
{{ $data->creator->fullname ?? 'System' }}
{{ $data->created_at->format('d M Y, H:i') }}
@if($data->modificator)
{{ $data->modificator->fullname }}
{{ $data->updated_at->format('d M Y, H:i') }}
@endif @if($data->description)
{{ $data->description }}
@endif
@endsection