KTV/resources/views/livewire/admin/song-header.blade.php

15 lines
476 B
PHP
Raw Normal View History

2025-05-05 16:54:21 +08:00
<div class="flex justify-end mb-2 mr-2 mt-2 sm:mt-0 gap-3">
2025-05-02 18:07:25 +08:00
<x-wireui:button
wire:click="$dispatchTo('admin.song-form', 'openModal')"
2025-05-02 18:07:25 +08:00
icon="plus"
label="{{ __('songs.CreateNew') }}"
class="bg-blue-600 text-white"
/>
2025-05-05 16:54:21 +08:00
<x-wireui:button
wire:click="$dispatchTo('admin.song-import-data','openModal')"
icon="document-plus"
label="{{ __('songs.ImportData') }}"
class="bg-green-600 text-white"
/>
2025-05-02 18:07:25 +08:00
</div>