@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Chat Categories')) @section('titlebar_subtitle', __('Manage Chat Categories')) @section('titlebar_actions') {{ __('Add Category') }} @endsection @section('content')
{{ __('Name') }} {{ __('User') }} {{ __('Action') }} @foreach ($list as $entry) {{ $entry->name }} {{ $entry->user?->name ?: trans('System') }} @if ($app_is_demo) @else @endif @endforeach
@endsection