@extends('shaun_core::admin.layouts.master') @section('content')
{{__("Manage Values of ':attributeName'", ['attributeName' => $attribute->name])}}
{{__('Create new')}}
{{ csrf_field() }} @foreach ($attributeValues as $attributeValue) @endforeach
{{__('Name')}} {{__('Status')}} {{__('Actions')}}
{{$attributeValue->getTranslatedAttributeValue('name')}} @if ($attributeValue->is_active) {{__('Yes')}} @else {{__('No')}} @endif {{__('Edit')}} {{__('Delete')}}
{{ $attributeValues->withQueryString()->links('shaun_core::admin.partial.paginate') }}
@stop @push('scripts-body') @endpush