@extends('layouts.app') @section('content')
View attribute groups that organize attributes within attribute sets:
| Group ID | Group Name | Attribute Set | Attributes | Sort Order | Actions |
|---|---|---|---|---|---|
| {{ $group->attribute_group_id }} | {{ $group->attribute_group_name ?? 'N/A' }} | {{ $group->attribute_set_name ?? 'Default' }} | {{ $group->attribute_count ?? 0 }} | {{ $group->sort_order ?? 0 }} | @if($isMissing) @else ✓ Exists @endif |
| Group ID | Group Name | Attribute Set | Attributes | Sort Order |
|---|---|---|---|---|
| {{ $group->attribute_group_id }} | {{ $group->attribute_group_name ?? 'N/A' }} | {{ $group->attribute_set_name ?? 'Default' }} | {{ $group->attribute_count ?? 0 }} | {{ $group->sort_order ?? 0 }} |
These attributes exist in Magento 1 but are missing in Magento 2:
@if($m1AttributesMissingInM2->count() > 0)| ID | Code | Label | Type | Input | Required | User Defined | Actions |
|---|---|---|---|---|---|---|---|
| {{ $attr->attribute_id }} | {{ $attr->attribute_code }} | {{ $attr->frontend_label ?? 'N/A' }} | {{ $attr->backend_type ?? 'N/A' }} | {{ $attr->frontend_input ?? 'N/A' }} | @if($attr->is_required ?? 0) Yes @else No @endif | @if($attr->is_user_defined ?? 0) Yes @else No @endif |
View all category attributes from Magento 1 and Magento 2
| ID | Code | Label | Type | Input | Required |
|---|---|---|---|---|---|
| {{ $attr->attribute_id }} | {{ $attr->attribute_code }} | {{ $attr->frontend_label ?? 'N/A' }} | {{ $attr->backend_type ?? 'N/A' }} | {{ $attr->frontend_input ?? 'N/A' }} | @if($attr->is_required ?? 0) Yes @else No @endif |
| ID | Code | Label | Type | Input | Required |
|---|---|---|---|---|---|
| {{ $attr->attribute_id }} | {{ $attr->attribute_code }} | {{ $attr->frontend_label ?? 'N/A' }} | {{ $attr->backend_type ?? 'N/A' }} | {{ $attr->frontend_input ?? 'N/A' }} | @if($attr->is_required ?? 0) Yes @else No @endif |