@extends(BaseHelper::getAdminMasterLayoutTemplate()) @section('content')
| {{ trans('core/base::tables.id') }} | {{ $log->id }} |
|---|---|
| {{ trans('plugins/hotel::room.name') }} | {{ $room->name }} |
| {{ trans('plugins/hotel::ical.calendar') }} | {{ $log->calendar ? $log->calendar->name : trans('plugins/hotel::ical.all_calendars') }} |
| {{ trans('core/base::tables.status') }} | @include('plugins/hotel::ical.partials.status', ['item' => $log]) |
| {{ trans('plugins/hotel::ical.message') }} | {{ $log->message }} |
| {{ trans('core/base::tables.created_at') }} | {{ BaseHelper::formatDateTime($log->created_at) }} |
| {{ trans('plugins/hotel::ical.data') }} |
{{ json_encode($log->data, JSON_PRETTY_PRINT) }}
|