@extends('layouts.app') @push('pageTitle') {{ __('labels.ticket_categories') }} @endpush @section('content')
| # | {{ __('labels.name') }} | {{ __('labels.description') }} | {{ __('labels.status') }} | {{ __('labels.tickets') }} | {{ __('labels.created_at') }} | {{ __('labels.action') }} | |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $category->name }} | {{ \Illuminate\Support\Str::limit($category->description, 80) }} | @if($category->is_active) {{ __('labels.active') }} @else {{ __('labels.inactive') }} @endif | {{--{{ ucfirst($category->default_priority ?? 'medium') }} | --}}{{ $category->tickets_count ?? 0 }} | {{ $category->created_at?->format('d.m.Y H:i') }} |