KTV/resources/views/livewire/headers/artist.blade.php
allen.yan df8d7ce4ac 202508031828
調整權限位置
2025-08-03 18:31:42 +08:00

18 lines
609 B
PHP

<x-admin.section-header title="{{ __('artists.list') }}">
@if ($canCreate)
<x-wireui:button
wire:click="$dispatchTo('forms.artist-form', 'openModal')"
icon="plus"
label="{{ __('artists.CreateNew') }}"
class="bg-blue-600 text-white"
/>
@endif
@if ($canDownload)
<x-wireui:button
wire:click="$dispatchTo('import-datas.artist','openModal')"
icon="document-plus"
label="{{ __('artists.ImportData') }}"
class="bg-green-600 text-white"
/>
@endif
</x-admin.section-header>