@extends('admin.layout.index') @section('title') مشخصات فنی @endsection @section('style') @endsection @section('script') @endsection @section('content')
لیست مشخصات فنی ({{ $product->name }})
بازگشت
@foreach ($attributes as $attr) @php $items = \App\Models\ProductAttribute::where('attribute_id', $attr->id) ->where('product_id', $product->id) ->get(); @endphp @foreach ($items as $attribute) @endforeach @endforeach
نام مقدار (نام‌ها) اختصار اولویت نمایش نمایش در لیست محصولات نمایش در جزئیات محصول عملیات
{{ $attribute->attribute->name }} {{ $attribute->attributeValueNames() }} {{ $attribute->short_text }} {{ $attribute->priority }}
@include('admin.products.attributes.modal') @endsection