{{-- created_at --}}
{{ trans('document_template.created_at') }}:
{{ @$model->created_at }}  
{{-- created_by_id --}}
{{ trans('document_template.created_by_id') }}:
@if ($model->creator)
{{ $model->creator->name }}
{{ $model->creator->email }}
@endif
{{-- updated_at --}}
{{ trans('document_template.updated_at') }}:
{{ @$model->updated_at }}  
{{-- updated_by_id --}}
{{ trans('document_template.updated_by_id') }}:
@if ($model->updater)
{{ $model->updater->name }}
{{ $model->updater->email }}
@endif