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