@can('inventory_create')
@endcan| {{ trans('cruds.inventory.fields.id') }} | {{ trans('cruds.inventory.fields.distribution_point') }} | {{ trans('cruds.distributionPoint.fields.city') }} | {{ trans('cruds.inventory.fields.number_of_bowl_given') }} | {{ trans('cruds.inventory.fields.status') }} | ||
|---|---|---|---|---|---|---|
| {{ $inventory->id ?? '' }} | {{ $inventory->distribution_point->name ?? '' }} | {{ $inventory->distribution_point->city ?? '' }} | {{ $inventory->number_of_bowl_given ?? '' }} | {{ App\Models\Inventory::STATUS_SELECT[$inventory->status] ?? '' }} | @can('inventory_show') {{ trans('global.view') }} @endcan @can('inventory_edit') {{ trans('global.edit') }} @endcan @can('inventory_delete') @endcan |