@can('recipient_create')
@endcan{{ trans('cruds.recipient.fields.id') }} | {{ trans('cruds.recipient.fields.category') }} | {{ trans('cruds.recipient.fields.type') }} | {{ trans('cruds.recipient.fields.name') }} | {{ trans('cruds.recipient.fields.phone_number') }} | {{ trans('cruds.recipient.fields.address') }} | {{ trans('cruds.recipient.fields.province') }} | {{ trans('cruds.recipient.fields.city') }} | {{ trans('cruds.recipient.fields.district') }} | {{ trans('cruds.recipient.fields.photo') }} | {{ trans('cruds.recipient.fields.parent') }} | {{ trans('cruds.recipient.fields.recipient_count') }} | {{ trans('cruds.recipient.fields.bank_name') }} | {{ trans('cruds.recipient.fields.bank_account') }} | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $recipient->id ?? '' }} | {{ App\Models\Recipient::CATEGORY_RADIO[$recipient->category] ?? '' }} | {{ App\Models\Recipient::TYPE_SELECT[$recipient->type] ?? '' }} | {{ $recipient->name ?? '' }} | {{ $recipient->phone_number ?? '' }} | {{ $recipient->address ?? '' }} | {{ $recipient->province->name ?? '' }} | {{ $recipient->city->name ?? '' }} | {{ $recipient->district->name ?? '' }} |
@if($recipient->photo)
|
{{ $recipient->parent->name ?? '' }} | {{ $recipient->recipient_count ?? '' }} | {{ $recipient->bank_name ?? '' }} | {{ $recipient->bank_account ?? '' }} | @can('recipient_show') {{ trans('global.view') }} @endcan @can('recipient_edit') {{ trans('global.edit') }} @endcan @can('recipient_delete') @endcan |