@extends('admin.layout.app', ['title' => 'Attributes']) @section('content')
@if (session()->has('success'))
@if (is_array(session()->get('success')))
    @foreach (session()->get('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session()->get('success') }} @endif
@endif @if (count($errors) > 0) @if ($errors->any()) @endif @endif

{{ __('keywords.Attribute') }} {{ __('keywords.List') }}


@if ($attributes->isNotEmpty()) @php $i=1; @endphp @foreach ($attributes as $attribute) @php $i++; @endphp @endforeach @else @for ($i = 1; $i < 9; $i++) @endfor @endif
# {{ __('keywords.Attribute') }} {{ __('keywords.Name') }} {{ __('keywords.Actions') }}
{{ $i }} {{ $attribute->name }}  
{{ __('keywords.No data found') }}

{{ $attributes->links('pagination::bootstrap-4') }}
@push('scripts') @endpush @endsection