22 lines
644 B
PHP
22 lines
644 B
PHP
<flux:main>
|
|
<div class="flex justify-between items-center">
|
|
<div>
|
|
<flux:heading size="xl">{{ $pageTitle }}</flux:heading>
|
|
</div>
|
|
@if (auth()->user()->can('create bottle'))
|
|
<div>
|
|
<flux:button href="{{ route('studio.catalog.bottle.create') }}" variant="primary" wire:navigate.hover
|
|
class="text-sm">
|
|
Tambah
|
|
</flux:button>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<livewire:datatable.studio.catalog.bottles-table />
|
|
</div>
|
|
|
|
@include('components.confirmation.delete')
|
|
</flux:main>
|