@extends('backend.layouts.app') @section('content')

{{translate('All Colors')}}

{{ translate('Colors')}}
@foreach($colors as $key => $color) @endforeach
# {{ translate('Name')}} {{ translate('Options')}}
{{$key+1}} {{$color->name}}
{{ $colors->appends(request()->input())->links() }}
{{ translate('Add New Color') }}
@csrf
@endsection @section('modal') @include('modals.delete_modal') @endsection