first commit

This commit is contained in:
Muhammad Herdy Iskandar
2024-07-26 10:33:44 +00:00
commit 7117a42b13
399 changed files with 19527 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
@props([
'data'
])
<a x-data="{}"
x-on:click.prevent="window.navigator.clipboard.writeText(@js($data));$tooltip('{{ __('filament-breezy::default.clipboard.tooltip') }}');"
href="#" class="flex items-center">
@svg('heroicon-s-clipboard-document', 'w-4 mr-2')
<span class="">{{ __('filament-breezy::default.clipboard.link') }}</span>
</a>

View File

@@ -0,0 +1,16 @@
@props(['title','description'])
<x-filament::grid @class(["pt-6 gap-4 filament-breezy-grid-section"]) {{ $attributes }}>
<x-filament::grid.column>
<h3 @class(['text-lg font-medium filament-breezy-grid-title'])>{{$title}}</h3>
<p @class(['mt-1 text-sm text-gray-500 filament-breezy-grid-description'])>
{{$description}}
</p>
</x-filament::grid.column>
<x-filament::grid.column>
{{ $slot }}
</x-filament::grid.column>
</x-filament::grid>