@extends('Dashboard.layouts.app') @section('search') @endsection @section('color_create', 'active') @section('main_content')

Color List

@forelse($colors as $key=>$color) @empty @endforelse
ID English Name Myanmar Name Action Created At Updated At
{{ ($colors->currentPage() - 1) * $colors->perPage() + $key + 1 }} {{ $color->english_name }} {{ $color->myanmar_name }} @include('Dashboard.Color.edit')
@csrf @method('DELETE')
{{ $color->created_at->diffForHumans() }} {{ $color->updated_at->diffForHumans() }}
{{ $colors->appends(request()->all())->links() }}
@endsection @section('script') @endsection