@extends('website.layouts.default')
@push('css')
@endpush
@section('content')
Colors
{{--
New
Get the coolest t-shirts from our brand new store
--}}
| # |
Color Name |
Color Code |
Action |
@forelse ($colors as $color)
| {{ $loop->index + 1 }} |
{{ $color->color_name }} |
{{ $color->color_code }} |
|
@empty
No colors found
@endforelse
@include('website.includes.delete_modal')
{{ $colors->onEachSide(5)->links() }}
@endsection
@push('scripts')
@endpush