@extends('layouts.admin')
@section('page-title', 'Colors')
@section('content')
{{-- Header --}}
Colors
Manage product color options for your catalog
{{ $colors->total() }} {{ Str::plural('color', $colors->total()) }}
{{-- Color List --}}
Colors
| # |
Name |
Code |
Options |
@forelse($colors as $index => $color)
| {{ $colors->firstItem() + $index }} |
{{ $color->name }} |
{{ $color->hex_code }}
|
|
@empty
| No colors found |
@endforelse
@if($colors->hasPages())
{{ $colors->links() }}
@endif
{{-- Add Color Form --}}
@endsection