2025-05-13 13:36:31 +08:00
|
|
|
<x-admin.section-header title="{{ __('songs.list') }}">
|
2025-05-02 18:07:25 +08:00
|
|
|
<x-wireui:button
|
2025-05-07 20:08:25 +08:00
|
|
|
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-13 13:36:31 +08:00
|
|
|
</x-admin.section-header>
|