@extends('layouts.admin') @section('content') @can('product_category_create')
@endcan{{ trans('cruds.productCategory.fields.id') }} | {{ trans('cruds.productCategory.fields.name') }} | {{ trans('cruds.productCategory.fields.description') }} | {{ trans('cruds.productCategory.fields.photo') }} | ||
---|---|---|---|---|---|
{{ $productCategory->id ?? '' }} | {{ $productCategory->name ?? '' }} | {{ $productCategory->description ?? '' }} |
@if($productCategory->photo)
|
@can('product_category_show') {{ trans('global.view') }} @endcan @can('product_category_edit') {{ trans('global.edit') }} @endcan @can('product_category_delete') @endcan |