@extends('layouts.admin') @section('content') @can('product_create')
@endcan{{ trans('cruds.product.fields.id') }} | {{ trans('cruds.product.fields.name') }} | {{ trans('cruds.product.fields.description') }} | {{ trans('cruds.product.fields.price') }} | {{ trans('cruds.product.fields.category') }} | {{ trans('cruds.product.fields.tag') }} | {{ trans('cruds.product.fields.photo') }} | ||
---|---|---|---|---|---|---|---|---|
{{ $product->id ?? '' }} | {{ $product->name ?? '' }} | {{ $product->description ?? '' }} | {{ $product->price ?? '' }} | @foreach($product->categories as $key => $item) {{ $item->name }} @endforeach | @foreach($product->tags as $key => $item) {{ $item->name }} @endforeach |
@if($product->photo)
|
@can('product_show') {{ trans('global.view') }} @endcan @can('product_edit') {{ trans('global.edit') }} @endcan @can('product_delete') @endcan |