@extends('backend.layouts.app') @section('content')

{{ translate('All Attributes') }}

{{ translate('Attributes') }}
@foreach ($attributes as $key => $attribute) @endforeach
# {{ translate('Name') }} {{ translate('Values') }} {{ translate('Options') }}
{{ $key + 1 }} {{ $attribute->getTranslation('name') }} @foreach ($attribute->attribute_values as $key => $value) {{ $value->value }} @endforeach @can('view_product_attribute_values') @endcan @can('edit_product_attribute') @endcan @can('delete_product_attribute') @endcan
{{ $attributes->links() }}
@can('add_product_attribute')
{{ translate('Add New Attribute') }}
@csrf
@endcan
@endsection @section('modal') @include('modals.delete_modal') @endsection