classify admin

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:01 +05:00
commit e0f1989655
769 changed files with 1263008 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<button
type="{{ $attributes->get('type', 'button') }}"
class="bg-{{ $attributes->get('color', 'blue') }}-500 hover:bg-{{ $attributes->get('color', 'blue') }}-700 text-white font-bold py-2 px-4 rounded inline-flex items-center"
>
{{ $slot }}
</button>

View File

@@ -0,0 +1,7 @@
<svg class="w-6 h-6 text-red-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
<path
fill-rule="evenodd"
d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z"
clip-rule="evenodd"
/>
</svg>

After

Width:  |  Height:  |  Size: 425 B

View File

@@ -0,0 +1,9 @@
<input
class="appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="{{ $attributes->get('id') }}"
type="{{ $attributes->get('type', 'text') }}"
name="{{ $attributes->get('name') }}"
value="{{ $attributes->get('value') }}"
{{ $attributes->merge(['required' => $attributes->get('required', false) ? 'required' : null ]) }}
aria-label=""
>

View File

@@ -0,0 +1,9 @@
<label
for="{{ $attributes->get('for') }}"
class="block font-medium leading-5 text-gray-700 pb-2"
>
{{ $slot }}
@if($attributes->get('required', false))
<span class="text-red-400">*</span>
@endif
</label>

View File

@@ -0,0 +1,6 @@
<a
href="{{ $attributes->get('href') }}"
class="bg-{{ $attributes->get('color', 'blue') }}-500 hover:bg-{{ $attributes->get('color', 'blue') }}-700 text-white font-bold py-2 px-4 rounded inline-flex items-center"
>
{{ $slot }}
</a>

View File

@@ -0,0 +1,3 @@
<svg class="w-6 h-6 text-green-600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>

After

Width:  |  Height:  |  Size: 313 B