@extends('admin.tw.layout') @section('title','Colors') @section('content')

Colors

Add Color
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@forelse(($Variation ?? []) as $color) @empty @endforelse
Swatch Title Actions
@php $img = $color->image ? url('/uploads/colors/'.$color->image) : null; @endphp @if($img) {{ $color->title }} @else N/A @endif {{ $color->title }}
No colors found.
@endsection