@can('recipient_create')
@endcan{{ trans('cruds.recipient.fields.id') }} | {{ trans('cruds.recipient.fields.categories') }} | {{ trans('cruds.recipient.fields.type') }} | {{ trans('cruds.recipient.fields.code') }} | {{ trans('cruds.recipient.fields.name') }} | {{ trans('cruds.recipient.fields.contacts') }} | ||
---|---|---|---|---|---|---|---|
{{ $recipient->id ?? '' }} | @foreach($recipient->categories as $key => $item) {{ $item->name }} @endforeach | {{ App\Models\Recipient::TYPE_SELECT[$recipient->type] ?? '' }} | {{ $recipient->code ?? '' }} | {{ $recipient->name ?? '' }} | @foreach($recipient->contacts as $key => $item) {{ $item->name }} @endforeach | @can('recipient_show') {{ trans('global.view') }} @endcan @can('recipient_edit') {{ trans('global.edit') }} @endcan @can('recipient_delete') @endcan |