Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

subpanel-header.blade.php 874B

12345678910111213141516171819202122232425262728
  1. @props([
  2. 'label' => null,
  3. 'panelId' => null,
  4. ])
  5. @php
  6. $targetId = \Illuminate\Support\Str::slug($label);
  7. @endphp
  8. <li class="grid grid-flow-col auto-cols-max gap-x-2 items-start p-2">
  9. <button
  10. x-ref="{{ $panelId }}-back"
  11. @click="goBack()"
  12. @keydown.enter="focusMenuItem('{{ $panelId }}-forward')"
  13. aria-label="Back"
  14. class="icon h-9 w-9 flex items-center justify-center rounded-full hover:bg-gray-50 focus-visible:bg-gray-50 dark:hover:bg-white/5 dark:focus-visible:bg-white/5 cursor-pointer"
  15. >
  16. <x-filament::icon
  17. icon="heroicon-m-arrow-left"
  18. class="h-6 w-6 text-gray-600 dark:text-gray-200"
  19. />
  20. </button>
  21. <div class="px-2" aria-live="polite">
  22. <h1 class="text-gray-700 dark:text-gray-200 text-lg font-bold">
  23. {{ $label }}
  24. </h1>
  25. </div>
  26. </li>