@extends('layouts/base_view') @section('title') {!! $variables['header_routes'] !!} @endsection @section('content')
ID : {{ $data->id }}
Nama : {{ $data->name }}
Status : @if($data->delete_flag) Nonaktif @else Aktif @endif
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->description)
Deskripsi : {{ $data->description }}
@endif
@method('delete') @csrf
@endsection