@include('cruds.fields.type', ['base' => \App\Models\Journal::class, 'trans' => 'journals'])
@if ($campaign->enabled('characters'))
{!! Form::select2(
'character_id',
(isset($model) && $model->character ? $model->character : $formService->prefillSelect('character', $source)),
App\Models\Character::class,
false,
'journals.fields.author'
) !!}
@endif