@extends('layouts.app') @section('content') {{-- Page Header --}} {{-- Attributes Table --}}

Attributes (Latest)

@forelse($attributes as $attr) @empty @endforelse
# {{ __('Name') }} {{ __('Category') }} {{ __('Parent') }} {{ __('Actions') }}
{{ $attr->id }} {{ $attr->name }} {{ $attr->category->name ?? '-' }} {{ $attr->parent_id ?? '-' }}
{{-- View --}} {{-- Edit --}} {{-- Delete --}}
@csrf @method('DELETE')
{{ __('No attributes found.') }}
{{-- Pagination --}}
{{ $attributes->links() }}
@endsection