@extends('layouts.admin') @section('content') @can('product_category_create')
{{ trans('global.add') }} {{ trans('cruds.productCategory.title_singular') }}
@endcan
{{ trans('cruds.productCategory.title_singular') }} {{ trans('global.list') }}
@foreach($productCategories as $key => $productCategory) @endforeach
{{ 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) @endif @can('product_category_show') {{ trans('global.view') }} @endcan @can('product_category_edit') {{ trans('global.edit') }} @endcan @can('product_category_delete')
@endcan
@endsection @section('scripts') @parent @endsection