@extends('admin.layouts.app') @section('title', __('admin.ticket_statuses.title')) @section('content')
@if(($statuses ?? collect())->isEmpty())
{{ __('admin.ticket_statuses.no_statuses_msg') }}
@else @foreach($statuses as $status) @endforeach
{{ __('admin.ticket_statuses.status_name_col') }}{{ __('admin.ticket_statuses.color_col') }}{{ __('admin.ticket_statuses.show_on_client') }}{{ __('admin.ticket_statuses.sort_order') }}{{ __('common.table.actions') }}
{{ $status->title }} {{ $status->color ?? '-' }} {{ $status->show_client ? __('common.yes') : __('common.no') }} {{ $status->order ?? 0 }}
@csrf @method('DELETE')
@endif
@endsection