@extends('layouts.app') @section('content') {{-- Colors Table --}}

Colors (Latest)

@forelse ($colors as $color) @empty @endforelse
# {{ __('Name') }} {{ __('Color') }} {{ __('Code') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $color->name }}
{{ $color->code }}
{{-- View --}} {{-- Edit --}} {{-- Delete --}}
{{ __('No colors found.') }}
{{-- Pagination --}}
{{ $colors->links() }}
{{-- Copy Color Script --}} @endsection