@extends('backend.layouts.master') @section('section-title', 'Product Color') @section('page-title', 'Product Color List') @if (check_permission('color.store')) @section('action-button') Add Color @endsection @endif @push('css') @endpush @section('content')
@forelse($product_color as $data) {{-- delete modal --}} @csrf @method('DELETE') @empty @endforelse
#SL Color Name Action
{{ $loop->index + 1 }} {{ $data->color }}
No Data Available
{{-- Add Modal --}}
@csrf
@endsection