@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', $title) @section('titlebar_subtitle', __('Train MagicAI on your own data (website or PDF) and make your AI content exclusive.')) @section('titlebar_actions')
{{ __('Add New Chatbot') }}
@endsection @section('content')
{{ __('Name') }} {{ __('Status') }} {{ __('User') }} {{ __('Created') }} {{ __('Model') }} {{ __('Actions') }} @foreach ($items as $item) @if ($item->image) {{ $item->title }} @else
{{ \Illuminate\Support\Str::limit($item->title, 2, '') }}
@endif {{ $item->title }} @include('panel.admin.chatbot.status', ['status' => $item->status]) {{ $item->user?->name ?: trans('System') }}

{{ $item?->created_at?->diffForHumans() }}

{{ $item->model }} {{-- blade-formatter-disable --}} {{-- blade-formatter-enable --}} @endforeach
@if ($items->total() > 10)
{{ $items->links() }}
@endif
@endsection @push('script') @endpush