@extends('admin.layout') @section('title', 'Gestion des couleurs') @section('content')

@yield('title')

@foreach ($colors as $color) {{-- Stocks : badge rond ✓ / ✗ --}} @endforeach
Nom de la couleur Couleur Brillant Mât Sablé
{{ $color['value_display'] }} @if (!empty($color['name_fr'])) {{ $color['name_fr'] }} @endif @if(($color['shiny_stock'] ?? 0) > 0) @else @endif @if(($color['matte_stock'] ?? 0) > 0) @else @endif @if(($color['sanded_stock'] ?? 0) > 0) @else @endif
@endsection