parfum/resources/views/livewire/studio/catalog/bottle/index.blade.php
2025-10-29 10:32:26 +07:00

23 lines
699 B
PHP

<flux:main>
<div class="flex justify-between items-center">
<div>
<flux:heading size="xl">{{ $pageTitle }}</flux:heading>
</div>
@can('create bottle')
<div>
<flux:button href="{{ route('studio.catalog.bottle.create') }}" variant="primary" wire:navigate.hover
class="text-sm">
Tambah
</flux:button>
</div>
@endcan
</div>
<div class="mt-6">
<livewire:datatable.studio.catalog.bottles-table />
</div>
@include('components.confirmation.delete')
@include('components.confirmation.show-price', ['module' => 'bottle'])
</flux:main>