tabs.php 1015 B

12345678910111213141516171819
  1. <!-- Tabs Navigation -->
  2. <div class="bg-white rounded-lg shadow-sm mb-6">
  3. <div class="border-b border-gray-200">
  4. <nav class="-mb-px flex space-x-8 px-6">
  5. <?php if (isset($tabs) && is_array($tabs)): ?>
  6. <?php foreach ($tabs as $tabKey => $tab): ?>
  7. <button @click="activeTab = '<?= $tabKey ?>'"
  8. :class="activeTab === '<?= $tabKey ?>' ? 'border-blue-500 text-blue-600' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300'"
  9. class="py-4 px-1 border-b-2 font-medium text-sm whitespace-nowrap transition-colors">
  10. <svg class="w-5 h-5 inline mr-2" fill="currentColor" viewBox="0 0 20 20">
  11. <path d="<?= $tab['icon'] ?? '' ?>"/>
  12. </svg>
  13. <?= $tab['label'] ?>
  14. </button>
  15. <?php endforeach; ?>
  16. <?php endif; ?>
  17. </nav>
  18. </div>
  19. </div>