@can('product_create')
{{ trans('global.add') }} {{ trans('cruds.resource.title_singular') }}
@endcan
{{ trans('cruds.resource.title_singular') }} {{ trans('global.list') }}
@foreach($resources as $key => $resource) @endforeach
{{ trans('cruds.resource.fields.id') }} {{ trans('cruds.resource.fields.category') }} {{ trans('cruds.resource.fields.title') }} {{ trans('cruds.resource.fields.file') }} {{ trans('cruds.resource.fields.tag') }}  
{{ $resource->id ?? '' }} {{ $resource->category->name ?? '' }} {{ $resource->title ?? '' }} @if($resource->file) {{ trans('global.view_file') }} @endif @foreach($resource->tags as $key => $item) {{ $item->name }} @endforeach @can('product_create') {{ trans('global.view') }} @endcan @can('product_create') {{ trans('global.edit') }} @endcan @can('product_create')
@endcan
@section('scripts') @parent @endsection