mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<div class="flex flex-col space-y-1">
|
|
<div>
|
|
<x-button
|
|
class="whitespace-nowrap"
|
|
primary
|
|
xs
|
|
:href="route('meetup.event.landing', ['country' => $row->meetup->city->country, 'meetupEvent' => $row->id])"
|
|
>
|
|
<i class="fa fa-thin fa-browser mr-2"></i>
|
|
{{ __('Link to participate') }}
|
|
</x-button>
|
|
</div>
|
|
<div>
|
|
@if($row->meetup->telegram_link)
|
|
<x-button
|
|
xs
|
|
black
|
|
target="_blank"
|
|
:href="$row->meetup->telegram_link"
|
|
>
|
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
|
{{ __('Telegram-Link') }}
|
|
</x-button>
|
|
@endif
|
|
</div>
|
|
<div>
|
|
@if($row->meetup->webpage)
|
|
<x-button
|
|
xs
|
|
black
|
|
target="_blank"
|
|
:href="$row->meetup->webpage"
|
|
>
|
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
|
{{ __('Website') }}
|
|
</x-button>
|
|
@endif
|
|
</div>
|
|
<div>
|
|
@if($row->meetup->twitter_username)
|
|
<x-button
|
|
xs
|
|
black
|
|
target="_blank"
|
|
:href="$row->meetup->twitter_username"
|
|
>
|
|
<i class="fa fa-brand fa-twitter mr-2"></i>
|
|
{{ __('Twitter') }}
|
|
</x-button>
|
|
@endif
|
|
</div>
|
|
</div>
|