@can('massDelete', \App\Models\AttributeValue::class)
|
@endcan
|
{{ $attributeValue->order }} |
{{ $attributeValue->value }} |
@if ($attributeValue->color)
{{ $attributeValue->color }}
@endif
|
@if ($attributeValue->image)
@endif
|
@can('view', $attributeValue)
@endcan
@can('update', $attributeValue)
@endcan
@can('delete', $attributeValue)
{!! Form::open(['route' => ['admin.catalog.attributeValue.trash', $attributeValue->id], 'method' => 'delete', 'class' => 'data-form']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!}
{!! Form::close() !!}
@endcan
|
@endforeach