33 lines
979 B
PHP
33 lines
979 B
PHP
<x-filament-panels::page>
|
|
<x-filament::section
|
|
icon="heroicon-o-book-open"
|
|
icon-color="primary"
|
|
>
|
|
<x-slot name="heading">{{ __('Documentation') }}</x-slot>
|
|
|
|
<x-filament::button
|
|
tag="a"
|
|
href="https://jabali-panel.com/docs/"
|
|
target="_blank"
|
|
rel="noopener"
|
|
icon="heroicon-o-arrow-top-right-on-square"
|
|
>
|
|
{{ __('Open Documentation') }}
|
|
</x-filament::button>
|
|
</x-filament::section>
|
|
|
|
<x-filament::section
|
|
icon="heroicon-o-chat-bubble-left-right"
|
|
icon-color="info"
|
|
class="mt-6"
|
|
>
|
|
<x-slot name="heading">{{ __('Support Chat') }}</x-slot>
|
|
|
|
<div id="jabali-support-chat"></div>
|
|
</x-filament::section>
|
|
|
|
@script
|
|
<script src="https://portal.jabali-panel.com/js/support-widget.js?v=10" data-api-url="https://portal.jabali-panel.com" data-open="true"></script>
|
|
@endscript
|
|
</x-filament-panels::page>
|