KTV/resources/views/livewire/headers/branch.blade.php

18 lines
612 B
PHP
Raw Normal View History

2025-05-13 13:36:31 +08:00
<x-admin.section-header title="{{ __('branches.list') }}">
2025-08-03 18:31:42 +08:00
@if ($canCreate)
<x-wireui:button
wire:click="$dispatchTo('forms.branch-form', 'openModal')"
icon="plus"
label="{{ __('branches.CreateNew') }}"
class="bg-blue-600 text-white"
/>
@endif
@if ($canDownload)
<x-wireui:button
wire:click="$dispatchTo('import-datas.branch','openModal')"
icon="document-plus"
label="{{ __('branches.ImportData') }}"
class="bg-green-600 text-white"
/>
@endif
2025-05-13 13:36:31 +08:00
</x-admin.section-header>