@extends('admin.layouts.app') @section('title', isset($product) ? 'Məhsulu dəyiş' : 'Yeni məhsul') @section('content') @php $editingProduct = $product ?? null; $productColors = collect(old('color_name') !== null ? collect(old('color_name', []))->map(fn ($name, $index) => [ 'name' => $name, 'hex' => old("color_hex.$index", '#c77d4a'), ])->all() : ($editingProduct?->color_variants ?? []) )->filter(fn ($color) => !empty($color['name']) || !empty($color['hex']))->values(); if ($productColors->isEmpty()) { $productColors = collect([['name' => '', 'hex' => '#c77d4a']]); } @endphp
Məhsulun əsas məlumatlarını daxil edin. Ana səhifədə görünməsi ayrıca “Ana səhifə məhsulları” bölməsindən seçilir.