🚀 Add courses and lecturers management functionality

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 14:23:59 +01:00
parent 976844487a
commit e96413d1a0
18 changed files with 1740 additions and 17 deletions

View File

@@ -48,15 +48,20 @@ new class extends Component {
}; ?>
<div>
<div class="flex items-center justify-between">
<div class="flex items-center justify-between mb-6">
<flux:heading size="xl">{{ __('Meetups') }}</flux:heading>
<flux:button class="cursor-pointer" x-copy-to-clipboard="'{{ route('ics') }}'" icon="calendar-date-range">{{ __('Kalender-Stream-URL kopieren') }}</flux:button>
<div class="mt-4">
<div class="flex items-center gap-4">
<flux:button class="cursor-pointer" x-copy-to-clipboard="'{{ route('ics') }}'" icon="calendar-date-range">{{ __('Kalender-Stream-URL kopieren') }}</flux:button>
<flux:input
wire:model.live="search"
:placeholder="__('Suche nach Meetups...')"
clearable
/>
@auth
<flux:button class="cursor-pointer" :href="route_with_country('meetups.create')" icon="plus" variant="primary">
{{ __('Meetup erstellen') }}
</flux:button>
@endauth
</div>
</div>