TenantAtlas/resources/views/filament/pages/inventory-landing.blade.php
2026-01-07 17:02:32 +01:00

24 lines
869 B
PHP

<x-filament::page>
<x-filament::section>
<div class="flex flex-col gap-3">
<div class="text-sm text-gray-600 dark:text-gray-300">
Browse inventory items, inspect sync runs, and review coverage/capabilities.
</div>
<div class="flex flex-wrap gap-3">
<x-filament::button tag="a" :href="$this->getInventoryItemsUrl()">
Inventory Items
</x-filament::button>
<x-filament::button tag="a" color="gray" :href="$this->getSyncRunsUrl()">
Sync Runs
</x-filament::button>
<x-filament::button tag="a" color="gray" :href="$this->getCoverageUrl()">
Coverage
</x-filament::button>
</div>
</div>
</x-filament::section>
</x-filament::page>