- Created `quick-replies.blade.php` for managing quick replies. - Added `settings.blade.php` for admin settings management. - Implemented `ticket-show.blade.php` to display ticket details. - Introduced `timeline-card.blade.php` component for displaying timeline information. Enhance quick reply management functionality - Developed `quick-reply-manager.blade.php` for creating and editing quick replies. - Integrated Livewire for dynamic interaction and validation. Implement settings page for AI configuration - Created `settings-page.blade.php` for managing AI settings, including prompts and provider instances. - Added functionality for managing models and embeddings. Add ticket show functionality with real-time updates - Implemented ticket details view with processing status and tool call logs. - Added support for displaying article suggestions and error messages. Create unit tests for AI classifier and domain info tool - Added `AIClassifierServiceTest.php` to validate AI classifier functionality. - Implemented `DomainInfoToolTest.php` for domain parameter validation. - Created `OxxaClientTest.php` to test API interactions and password hashing.
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ $title ?? 'Admin' }} - Ticket Assistant</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
@livewireStyles
|
|
</head>
|
|
<body class="bg-slate-100 text-slate-900">
|
|
<div class="min-h-screen">
|
|
<header class="bg-slate-900 text-white">
|
|
<div class="mx-auto max-w-7xl px-6 py-4 flex items-center justify-between">
|
|
<h1 class="text-lg font-semibold">Ticket Assistant Admin</h1>
|
|
<nav class="flex gap-3 text-sm">
|
|
<a href="{{ route('admin.dashboard') }}" class="hover:underline">Dashboard</a>
|
|
<a href="{{ route('admin.articles') }}" class="hover:underline">Articles</a>
|
|
<a href="{{ route('admin.quick-replies') }}" class="hover:underline">Snelantwoorden</a>
|
|
<a href="{{ route('admin.tickets') }}" class="hover:underline">Tickets</a>
|
|
<a href="{{ route('admin.process') }}" class="hover:underline">Proces</a>
|
|
<a href="{{ route('admin.settings') }}" class="hover:underline">Settings</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="mx-auto max-w-7xl px-6 py-6">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|