feat:adds LLM capabilities to chat with your portfolios and holdings
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
@if ($showClose)
|
||||
<x-button
|
||||
icon="o-x-mark"
|
||||
title="{{ __('Close') }}"
|
||||
class="absolute top-4 right-4 btn-ghost btn-circle btn-sm"
|
||||
@click="open = false"
|
||||
/>
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
@endif
|
||||
|
||||
@if ($showClose)
|
||||
<x-button icon="o-x-mark" class="btn-ghost btn-circle btn-sm absolute top-4 right-4 " @click="open = false" />
|
||||
<x-button icon="o-x-mark" title="{{ __('Close') }}" class="btn-ghost btn-circle btn-sm absolute top-4 right-4 " @click="open = false" />
|
||||
@endif
|
||||
|
||||
{{ $slot }}
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
@if ($showClose)
|
||||
<x-button
|
||||
icon="o-x-mark"
|
||||
title="{{ __('Close') }}"
|
||||
class="absolute top-4 right-4 btn-ghost btn-circle btn-sm"
|
||||
@click="$wire.{{ $attributes->wire('model')->value() }} = false"
|
||||
/>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
'rows' => 4
|
||||
])
|
||||
|
||||
<div class="mt-1">
|
||||
<div {{ $attributes->class([]) }}>
|
||||
<!-- STANDARD LABEL -->
|
||||
@if($label)
|
||||
<label for="{{ $uuid }}" class="pt-0 label label-text font-semibold">
|
||||
@@ -27,7 +27,7 @@
|
||||
->class([
|
||||
'textarea textarea-primary w-full peer',
|
||||
'border border-dashed' => $attributes->has('readonly') && $attributes->get('readonly') == true,
|
||||
'textarea-error' => $errors->has($errorField)
|
||||
'textarea-error' => $errors->has($errorField),
|
||||
])
|
||||
}}
|
||||
x-data="{
|
||||
|
||||
Reference in New Issue
Block a user