mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
recurring meetup events
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
<div class="w-full mb-4 md:w-auto md:mb-0">
|
||||
<x-button :href="route('meetup.event.form', ['country' => $country, 'meetupEvent' => null])">
|
||||
<i class="fa fa-thin fa-plus"></i>
|
||||
{{ __('Register Meetup date') }}
|
||||
</x-button>
|
||||
</div>
|
||||
16
resources/views/columns/meetup_events/manage.blade.php
Normal file
16
resources/views/columns/meetup_events/manage.blade.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<div class="flex flex-col space-y-1">
|
||||
<div>
|
||||
@if(auth()->user()->can('update', $row))
|
||||
<x-button
|
||||
primary
|
||||
xs
|
||||
:href="route('meetup.event.form', ['country' => $row->meetup->city->country, 'meetupEvent' => $row])"
|
||||
>
|
||||
<i class="fa fa-thin fa-edit mr-2"></i>
|
||||
{{ __('Edit') }}
|
||||
</x-button>
|
||||
@else
|
||||
<x-badge>{{ __('no authorization') }}</x-badge>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
@@ -5,5 +5,4 @@
|
||||
{{ $row->name }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user