mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<div>
|
|
<x-button
|
|
black
|
|
xs
|
|
:href="route('meetup.landing', ['country' => $country, 'meetup' => $row->meetup->slug])"
|
|
>
|
|
<i class="fa fa-thin fa-browser mr-2"></i>
|
|
{{ __('Show landing page') }}
|
|
</x-button>
|
|
@if($row->meetup->telegram_link)
|
|
<x-button
|
|
xs
|
|
secondary
|
|
target="_blank"
|
|
:href="$row->meetup->telegram_link"
|
|
>
|
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
|
{{ __('Telegram-Link') }}
|
|
</x-button>
|
|
@endif
|
|
@if($row->meetup->webpage)
|
|
<x-button
|
|
xs
|
|
secondary
|
|
target="_blank"
|
|
:href="$row->meetup->webpage"
|
|
>
|
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
|
{{ __('Website') }}
|
|
</x-button>
|
|
@endif
|
|
@if($row->meetup->twitter_username)
|
|
<x-button
|
|
xs
|
|
secondary
|
|
target="_blank"
|
|
:href="$row->meetup->twitter_username"
|
|
>
|
|
<i class="fa fa-brand fa-twitter mr-2"></i>
|
|
{{ __('Twitter') }}
|
|
</x-button>
|
|
@endif
|
|
</div>
|