@section('change-log-tab') @endsection @section('change-log-content')
{{--

{{ $order->customer->email }}

--}}
@foreach ($changeLogs as $changeLog) @endforeach
修改時間 修改人員 IP 修改方式 修改內容
{{ $changeLog->created_at }} {{ optional($changeLog->administrator)->name . ' (' . optional($changeLog->administrator)->email . ')'}} {{ $changeLog->ip }} {{ App\Models\OrderChangeLog::METHOD_MAP[$changeLog->method] }}
{!! $changeLog->humanable_logs !!}
@endsection