You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

report-tabs.blade.php 418B

123456789101112131415
  1. @props([
  2. 'activeTab' => 'summary',
  3. 'tabLabels' => ['summary' => 'Summary', 'details' => 'Details'],
  4. ])
  5. <x-filament::tabs>
  6. @foreach ($tabLabels as $tabKey => $label)
  7. <x-filament::tabs.item
  8. :active="$activeTab === $tabKey"
  9. wire:click="$set('activeTab', '{{ $tabKey }}')"
  10. >
  11. {{ $label }}
  12. </x-filament::tabs.item>
  13. @endforeach
  14. </x-filament::tabs>