@can('payment_entry_create')
@endcan{{ trans('cruds.paymentEntry.fields.id') }} | {{ trans('cruds.paymentEntry.fields.branch') }} | {{ trans('cruds.paymentEntry.fields.type') }} | {{ trans('cruds.paymentEntry.fields.reference') }} | {{ trans('cruds.paymentEntry.fields.amount') }} | {{ trans('cruds.paymentEntry.fields.journal_entry') }} | {{ trans('cruds.paymentEntry.fields.description') }} | {{ trans('cruds.paymentEntry.fields.date') }} | {{ trans('cruds.paymentEntry.fields.status') }} | ||
---|---|---|---|---|---|---|---|---|---|---|
{{ $paymentEntry->id ?? '' }} | {{ $paymentEntry->branch->name ?? '' }} | {{ App\Models\PaymentEntry::TYPE_SELECT[$paymentEntry->type] ?? '' }} | {{ $paymentEntry->reference->code ?? '' }} | {{ $paymentEntry->amount ?? '' }} | {{ $paymentEntry->journal_entry->description ?? '' }} | {{ $paymentEntry->description ?? '' }} | {{ $paymentEntry->date ?? '' }} | {{ App\Models\PaymentEntry::STATUS_RADIO[$paymentEntry->status] ?? '' }} | @can('payment_entry_show') {{ trans('global.view') }} @endcan @can('payment_entry_edit') {{ trans('global.edit') }} @endcan @can('payment_entry_delete') @endcan |