@extends('admin.layout') @section('title', 'Detail Audit Trail') @section('content')
| Nama | {{ $model->name }} |
|---|---|
| {{ $model->email }} | |
| Telepon | {{ $model->phone }} |
| Alamat | {{ $model->address }} |
| No. Identitas | {{ $model->id_number }} |
| Tanggal Lahir | {{ $model->date_of_birth ? $model->date_of_birth->format('d/m/Y') : '-' }} |
| Jenis Kelamin | {{ $model->gender }} |
| Kewarganegaraan | {{ $model->nationality }} |
| Dibuat Oleh | {{ $model->creator ? $model->creator->name : 'System' }} |
|---|---|
| Dibuat Pada |
{{ $model->created_at->format('d/m/Y H:i:s') }}
{{ $model->created_at->diffForHumans() }} |
| Diupdate Oleh | {{ $model->updater ? $model->updater->name : 'System' }} |
| Diupdate Pada |
{{ $model->updated_at->format('d/m/Y H:i:s') }}
{{ $model->updated_at->diffForHumans() }} |
| Kode Booking | Check-in | Status |
|---|---|---|
| {{ $booking->booking_code }} | {{ $booking->check_in_date->format('d/m/Y') }} | {{ $booking->status }} |
| Kode Booking | {{ $model->booking_code }} |
|---|---|
| Nama Tamu | {{ $model->guest_name }} |
| Email Tamu | {{ $model->guest_email }} |
| Telepon Tamu | {{ $model->guest_phone }} |
| Check-in | {{ $model->check_in_date->format('d/m/Y') }} |
| Check-out | {{ $model->check_out_date->format('d/m/Y') }} |
| Status | {{ $model->status }} |
| Total Harga | Rp {{ number_format($model->total_price, 0, ',', '.') }} |
| Dibuat Oleh | {{ $model->user ? $model->user->name : 'System' }} |
|---|---|
| Dibuat Pada |
{{ $model->created_at->format('d/m/Y H:i:s') }}
{{ $model->created_at->diffForHumans() }} |
| Diupdate Oleh | {{ $model->updater ? $model->updater->name : 'System' }} |
| Diupdate Pada |
{{ $model->updated_at->format('d/m/Y H:i:s') }}
{{ $model->updated_at->diffForHumans() }} |
| No. Invoice | {{ $model->invoice_number }} |
|---|---|
| Nama Tamu | {{ $model->guest_name }} |
| Email Tamu | {{ $model->guest_email }} |
| Telepon Tamu | {{ $model->guest_phone }} |
| Check-in | {{ $model->check_in_date->format('d/m/Y') }} |
| Check-out | {{ $model->check_out_date->format('d/m/Y') }} |
| Status | {{ $model->status }} |
| Total Amount | Rp {{ number_format($model->total_amount, 0, ',', '.') }} |
| Dibuat Oleh | {{ $model->creator ? $model->creator->name : 'System' }} |
|---|---|
| Dibuat Pada |
{{ $model->created_at->format('d/m/Y H:i:s') }}
{{ $model->created_at->diffForHumans() }} |
| Diupdate Oleh | {{ $model->updater ? $model->updater->name : 'System' }} |
| Diupdate Pada |
{{ $model->updated_at->format('d/m/Y H:i:s') }}
{{ $model->updated_at->diffForHumans() }} |