@extends('admin.layout.layout') @section('page-level-css') @endsection @section('content')
@include('admin.partials.header')
@csrf

Images

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif

Color

Total Colors

{{count($colors)}}

@foreach( $colors as $color ) @endforeach
{{$color->color}} @php $image = json_decode($color->image); @endphp @if(!empty($image)) @endif
Edit Delete
{{-- Delete Modal Starts here --}} @include('admin.partials.deleteModal') {{-- Delete Modal ends here --}} @include('admin.partials.footer')
@endsection @section('page-level-js') @endsection