{{__("messages.Manage Comment statuses")}} @can("add comment_statuses")
comment_type_id @foreach (\App\Models\CommentType::all() as $commentType) @endforeach
{{__("messages.Add Comment Statues")}}
@endcan
@if (session()->has('message'))
{{ session('message') }}
@endif # {{__("messages.Name")}} {{__("messages.Comment Type")}} {{__("messages.Updated By")}} {{__("messages.Updated At")}} {{__("messages.Created At")}}   @forelse ($statuses as $key =>$status) #{{$statuses->firstItem() + $key}} {{__('messages.Name')}} {{$status->name}} {{__("messages.Comment Type")}}{{($status->comment_type)?$status->comment_type->name:"-"}} {{__("messages.Updated By")}}{{($status->last_updated_by_user)?$status->last_updated_by_user->name:"-"}} {{__("messages.Updated At")}}{{$status->updated_at->diffForHumans()}} {{__("messages.Created At ")}}{{$status->created_at->diffForHumans()}}
@can("edit comment_statuses")
edit_comment_type_id @foreach (\App\Models\CommentType::all() as $commentType) @endforeach
{{__("messages.Comment Status")}} {{$status->name}} {{$status->id}}
@endcan @can("delete comment_statuses") {{__("messages.Comment Status")}} {{$status->name}} {{$status->id}} @endcan
@empty {{__("messages.Empty Result")}} @endforelse
{{$statuses->links()}}