@extends('layouts.admin') @section('content') @can('product_type_create')
@endcan{{ trans('cruds.productType.fields.id') }} | {{ trans('cruds.productType.fields.name') }} | {{ trans('cruds.productType.fields.cement') }} | {{ trans('cruds.productType.fields.sand') }} | {{ trans('cruds.productType.fields.gravel1') }} | {{ trans('cruds.productType.fields.gravel2') }} | {{ trans('cruds.productType.fields.screening') }} | {{ trans('cruds.productType.fields.water') }} | {{ trans('cruds.productType.fields.chemical1') }} | {{ trans('cruds.productType.fields.chemical2') }} | ||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ $productType->id ?? '-' }} | {{ $productType->name ?? '-' }} | {{ $productType->cement ?? '-' }} | {{ $productType->sand ?? '-' }} | {{ $productType->gravel1 ?? '-' }} | {{ $productType->gravel2 ?? '-' }} | {{ $productType->screening ?? '-' }} | {{ $productType->water ?? '-' }} | {{ $productType->chemical1 ?? '-' }} | {{ $productType->chemical2 ?? '-' }} | @can('product_type_show') {{ trans('global.view') }} @endcan @can('product_type_edit') {{ trans('global.edit') }} @endcan @can('product_type_delete') @endcan |