@extends('backend.dashboard.layout.master') @section('content')

{{ translate('product attribute List') }}

{{ translate('Add product attribute') }}
{{ translate('Selected') }}
@foreach ($attributeProduct as $item) @endforeach
{{ translate('name') }} {{ translate('product id') }} {{ translate('type') }} {{ translate('value') }} {{ translate('created at') }} {{ translate('modified at') }} {{ translate('Actions') }}
{{ $item->name }} {{ $item->product_id }} {{ $item->type }} {{ $item->value }} {{ $item->created_at->diffForHumans() }} {{ $item->updated_at->diffForHumans() }} {{ translate('Actions') }}
@if ($attributeProduct->hasPages())
  • @foreach ($attributeProduct->links()->elements as $element) @if (is_array($element)) @foreach ($element as $page => $url)
  • {{ $page }}
  • @endforeach @endif @endforeach
@endif
@endsection