@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', "Ai Assistant") @section('titlebar_subtitle', __('Train AI on your own data (website or PDF) and make your AI content exclusive.')) @section('titlebar_actions')
{{ __('Add New Assistant') }}
@endsection @section('content')
{{ __('Name') }} {{ __('Created At') }} {{ __('Model') }} {{ __('Actions') }} @if($assistants["status"] !== "error") @foreach ($assistants as $assistant)
{{ \Illuminate\Support\Str::limit($assistant["name"], 2, '') }}
{{ $assistant["name"] }}

{{ \Carbon\Carbon::createFromTimestamp($assistant["created_at"]) }}

{{ $assistant["model"] }} @endforeach
@endif
@if($assistants["status"] !== "error") @if ($assistants->total() > 10)
{{ $assistants->links() }}
@endif @endif
@endsection @push('script')