@extends('layouts/base_view') @section('title') {!! $variables['header_routes'] !!} @endsection @section('content')
Nama : {{ $data->name }}
Tanggal : {{ $data->formatted_date ?? $data->date->format('d M Y') }} @if(method_exists($data, 'isToday') && $data->isToday()) HARI INI @elseif(method_exists($data, 'isFuture') && $data->isFuture() && isset($data->days_until) && $data->days_until <= 7) {{ $data->days_until }} hari @elseif(method_exists($data, 'isPast') && $data->isPast()) Lewat @endif
Hari : {{ $data->date->format('l') }}
Tipe : {{ $data->type }}
Berulang : @if($data->is_recurring) Ya ({{ $data->recurring_type }}) @else Tidak @endif
Status : {{ $data->status }}
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