mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
KEY FIX
This commit is contained in:
@@ -39,7 +39,15 @@ class SyncGithubMeetups extends Command
|
|||||||
'github_data' => $meetup,
|
'github_data' => $meetup,
|
||||||
]);
|
]);
|
||||||
} else {
|
} else {
|
||||||
$this->info('Missing: '.$meetup['name'] . ' Url: ' . $meetup['url']);
|
$this->info('Missing: '.$meetup['name'].' Url: '.$meetup['url']);
|
||||||
|
if (app()->environment('local')) {
|
||||||
|
Meetup::create([
|
||||||
|
'name' => $meetup['name'],
|
||||||
|
'city_id' => 1,
|
||||||
|
'created_by' => 1,
|
||||||
|
'github_data' => $meetup,
|
||||||
|
]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<div wire:key="bitcoin_events_action_{{ $row->id }}">
|
<div>
|
||||||
<a href="{{ $row->link }}" target="_blank">
|
<a href="{{ $row->link }}" target="_blank">
|
||||||
<x-badge class="whitespace-nowrap">{{ __('Link') }}</x-badge>
|
<x-badge class="whitespace-nowrap">{{ __('Link') }}</x-badge>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -1,11 +1,15 @@
|
|||||||
<div class="flex flex-col space-y-1" wire:key="bookcase_action_{{ $row->id }}">
|
<div class="flex flex-col space-y-1" wire:key="bookcase_action_{{ $row->id }}">
|
||||||
@auth
|
@auth
|
||||||
@if($row->orange_pills_count > 0)
|
<div>
|
||||||
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_plus.webp') }}" alt="">
|
@if($row->orange_pills_count > 0)
|
||||||
@endif
|
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_plus.webp') }}" alt="">
|
||||||
@if($row->orange_pills_count < 1)
|
@endif
|
||||||
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_minus.webp') }}" alt="">
|
</div>
|
||||||
@endif
|
<div>
|
||||||
|
@if($row->orange_pills_count < 1)
|
||||||
|
<img class="aspect-auto max-h-12" src="{{ asset('img/social_credit_minus.webp') }}" alt="">
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
<div class="flex items-center space-x-1">
|
<div class="flex items-center space-x-1">
|
||||||
<x-button class="whitespace-nowrap" primary class="text-21gray whitespace-nowrap"
|
<x-button class="whitespace-nowrap" primary class="text-21gray whitespace-nowrap"
|
||||||
wire:click="viewHistoryModal({{ $row->id }})">{{ __('💊 Orange Pill Now') }}</x-button>
|
wire:click="viewHistoryModal({{ $row->id }})">{{ __('💊 Orange Pill Now') }}</x-button>
|
||||||
|
|||||||
@@ -1,26 +1,32 @@
|
|||||||
<div class="flex flex-col space-y-1" wire:key="cities_action_{{ $row->id }}">
|
<div class="flex flex-col space-y-1">
|
||||||
@if($type === 'school')
|
@if($type === 'school')
|
||||||
<div>
|
<div>
|
||||||
@if($row->course_events_count > 0)
|
<div>
|
||||||
<x-button amber wire:click="proximitySearch({{ $row->id }})" class="text-21gray">
|
@if($row->course_events_count > 0)
|
||||||
<i class="fa fa-thin fa-person-chalkboard mr-2"></i>
|
<x-button amber wire:click="proximitySearch({{ $row->id }})" class="text-21gray">
|
||||||
{{ __('Perimeter search course date :name (100km)', ['name' => $row->name]) }}
|
<i class="fa fa-thin fa-person-chalkboard mr-2"></i>
|
||||||
</x-button>
|
{{ __('Perimeter search course date :name (100km)', ['name' => $row->name]) }}
|
||||||
@endif
|
</x-button>
|
||||||
@if($row->course_events_count < 1)
|
@endif
|
||||||
<x-button outlined wire:click="proximitySearch({{ $row->id }})" class="text-21gray">
|
</div>
|
||||||
<i class="fa fa-thin fa-person-chalkboard mr-2"></i>
|
<div>
|
||||||
{{ __('Perimeter search course date :name (100km)', ['name' => $row->name]) }}
|
@if($row->course_events_count < 1)
|
||||||
</x-button>
|
<x-button outlined wire:click="proximitySearch({{ $row->id }})" class="text-21gray">
|
||||||
@endif
|
<i class="fa fa-thin fa-person-chalkboard mr-2"></i>
|
||||||
</div>
|
{{ __('Perimeter search course date :name (100km)', ['name' => $row->name]) }}
|
||||||
@endif
|
</x-button>
|
||||||
@if($type === 'bookCase')
|
@endif
|
||||||
<div>
|
</div>
|
||||||
<x-button amber wire:click="proximitySearchForBookCases({{ $row->id }})" class="text-21gray">
|
|
||||||
<i class="fa fa-thin fa-book mr-2"></i>
|
|
||||||
{{ __('Perimeter search bookcase :name (25km)', ['name' => $row->name]) }}
|
|
||||||
</x-button>
|
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
<div>
|
||||||
|
@if($type === 'bookCase')
|
||||||
|
<div>
|
||||||
|
<x-button amber wire:click="proximitySearchForBookCases({{ $row->id }})" class="text-21gray">
|
||||||
|
<i class="fa fa-thin fa-book mr-2"></i>
|
||||||
|
{{ __('Perimeter search bookcase :name (25km)', ['name' => $row->name]) }}
|
||||||
|
</x-button>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<div wire:key="courses_action_{{ $row->id }}">
|
<div>
|
||||||
<x-button amber wire:click="courseSearch({{ $row->id }})">
|
<x-button amber wire:click="courseSearch({{ $row->id }})">
|
||||||
{{ __('Show dates') }}
|
{{ __('Show dates') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
<div wire:key="course_events_action_{{ $row->id }}">
|
<div>
|
||||||
<x-button class="whitespace-nowrap" amber wire:click="viewHistoryModal({{ $row->id }})">{{ __('Register') }}</x-button>
|
<x-button class="whitespace-nowrap" amber wire:click="viewHistoryModal({{ $row->id }})">{{ __('Register') }}</x-button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,32 +1,42 @@
|
|||||||
<div wire:key="lecturers_action_{{ $row->id }}">
|
<div>
|
||||||
@if($row->courses_count > 0)
|
<div>
|
||||||
<x-button amber wire:click="lecturerSearch({{ $row->id }})">
|
@if($row->courses_count > 0)
|
||||||
<i class="fa fa-thin fa-calendar mr-2"></i>
|
<x-button amber wire:click="lecturerSearch({{ $row->id }})">
|
||||||
{{ __('Show dates') }} ({{ $row->courses_count }})
|
<i class="fa fa-thin fa-calendar mr-2"></i>
|
||||||
|
{{ __('Show dates') }} ({{ $row->courses_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->courses_count < 1)
|
||||||
|
<x-button outlined wire:click="lecturerSearch({{ $row->id }})">
|
||||||
|
<i class="fa fa-thin fa-calendar mr-2"></i>
|
||||||
|
{{ __('Show dates') }} ({{ $row->courses_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->library_items_count > 0)
|
||||||
|
<x-button amber wire:click="lecturerSearch({{ $row->id }}, false)">
|
||||||
|
<i class="fa fa-thin fa-book mr-2"></i>
|
||||||
|
{{ __('Show content') }} ({{ $row->library_items_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->library_items_count < 1)
|
||||||
|
<x-button outlined wire:click="lecturerSearch({{ $row->id }}, false)">
|
||||||
|
<i class="fa fa-thin fa-book mr-2"></i>
|
||||||
|
{{ __('Show content') }} ({{ $row->library_items_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<x-button
|
||||||
|
:href="route('school.landingPage.lecturer', ['country' => $country, 'lecturer' => $row->slug])"
|
||||||
|
amber>
|
||||||
|
<i class="fa fa-thin fa-browser mr-2"></i>
|
||||||
|
{{ __('Show landing page') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
@endif
|
</div>
|
||||||
@if($row->courses_count < 1)
|
|
||||||
<x-button outlined wire:click="lecturerSearch({{ $row->id }})">
|
|
||||||
<i class="fa fa-thin fa-calendar mr-2"></i>
|
|
||||||
{{ __('Show dates') }} ({{ $row->courses_count }})
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
@if($row->library_items_count > 0)
|
|
||||||
<x-button amber wire:click="lecturerSearch({{ $row->id }}, false)">
|
|
||||||
<i class="fa fa-thin fa-book mr-2"></i>
|
|
||||||
{{ __('Show content') }} ({{ $row->library_items_count }})
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
@if($row->library_items_count < 1)
|
|
||||||
<x-button outlined wire:click="lecturerSearch({{ $row->id }}, false)">
|
|
||||||
<i class="fa fa-thin fa-book mr-2"></i>
|
|
||||||
{{ __('Show content') }} ({{ $row->library_items_count }})
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
<x-button
|
|
||||||
:href="route('school.landingPage.lecturer', ['country' => $country, 'lecturer' => $row->slug])"
|
|
||||||
amber>
|
|
||||||
<i class="fa fa-thin fa-browser mr-2"></i>
|
|
||||||
{{ __('Show landing page') }}
|
|
||||||
</x-button>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,39 +1,48 @@
|
|||||||
<div class="flex flex-col space-y-1" wire:key="library_items_action_{{ $row->id }}">
|
<div class="flex flex-col space-y-1">
|
||||||
@if(str($row->value)->contains('http'))
|
<div>
|
||||||
<x-button xs amber :href="$row->value" target="_blank">
|
@if(str($row->value)->contains('http'))
|
||||||
<i class="fa fa-thin fa-book-open mr-2"></i>
|
<x-button xs amber :href="$row->value" target="_blank">
|
||||||
{{ __('Open') }}
|
<i class="fa fa-thin fa-book-open mr-2"></i>
|
||||||
</x-button>
|
{{ __('Open') }}
|
||||||
@endif
|
</x-button>
|
||||||
@if($row->type === 'downloadable_file')
|
@endif
|
||||||
<x-button xs amber :href="$row->getFirstMediaUrl('single_file')" target="_blank">
|
</div>
|
||||||
<i class="fa fa-thin fa-download mr-2"></i>
|
<div>
|
||||||
{{ __('Download') }}
|
@if($row->type === 'downloadable_file')
|
||||||
</x-button>
|
<x-button xs amber :href="$row->getFirstMediaUrl('single_file')" target="_blank">
|
||||||
@endif
|
<i class="fa fa-thin fa-download mr-2"></i>
|
||||||
@if($row->type === 'podcast_episode')
|
{{ __('Download') }}
|
||||||
<x-button xs amber :href="$row->episode->data['link']" target="_blank">
|
</x-button>
|
||||||
<i class="fa fa-thin fa-headphones mr-2"></i>
|
@endif
|
||||||
{{ __('Listen') }}
|
</div>
|
||||||
</x-button>
|
<div>
|
||||||
@endif
|
@if($row->type === 'podcast_episode')
|
||||||
@if($row->type === 'markdown_article')
|
<x-button xs amber :href="$row->episode->data['link']" target="_blank">
|
||||||
<x-button xs amber :href="route('article.view', [$row])">
|
<i class="fa fa-thin fa-headphones mr-2"></i>
|
||||||
<i class="fa fa-thin fa-newspaper mr-2"></i>
|
{{ __('Listen') }}
|
||||||
{{ __('Read') }}
|
</x-button>
|
||||||
</x-button>
|
@endif
|
||||||
@endif
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->type === 'markdown_article')
|
||||||
|
<x-button xs amber :href="route('article.view', [$row])">
|
||||||
|
<i class="fa fa-thin fa-newspaper mr-2"></i>
|
||||||
|
{{ __('Read') }}
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
|
||||||
@if($row->type !== 'markdown_article')
|
<div>
|
||||||
<x-button
|
@if($row->type !== 'markdown_article')
|
||||||
x-data="{
|
<x-button
|
||||||
|
x-data="{
|
||||||
textToCopy: '{{ url()->route('library.table.libraryItems', ['country' => 'de', 'table' => ['filters' => ['id' => $row->id]]]) }}',
|
textToCopy: '{{ url()->route('library.table.libraryItems', ['country' => 'de', 'table' => ['filters' => ['id' => $row->id]]]) }}',
|
||||||
}"
|
}"
|
||||||
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Share url copied!') }}',icon:'success'});"
|
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Share url copied!') }}',icon:'success'});"
|
||||||
xs black>
|
xs black>
|
||||||
<i class="fa fa-thin fa-copy mr-2"></i>
|
<i class="fa fa-thin fa-copy mr-2"></i>
|
||||||
{{ __('Share link') }}
|
{{ __('Share link') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
@else
|
@else
|
||||||
<x-button
|
<x-button
|
||||||
x-data="{
|
x-data="{
|
||||||
@@ -44,5 +53,6 @@
|
|||||||
<i class="fa fa-thin fa-copy mr-2"></i>
|
<i class="fa fa-thin fa-copy mr-2"></i>
|
||||||
{{ __('Share link') }}
|
{{ __('Share link') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
@endif
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,43 +1,51 @@
|
|||||||
<div class="flex flex-col space-y-1" wire:key="meetup_events_action_{{ $row->id }}">
|
<div class="flex flex-col space-y-1">
|
||||||
<x-button
|
<div>
|
||||||
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
|
<x-button
|
||||||
xs
|
|
||||||
black
|
black
|
||||||
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
|
xs
|
||||||
black
|
:href="route('meetup.landing', ['country' => $country, 'meetup' => $row->meetup->slug])"
|
||||||
target="_blank"
|
|
||||||
:href="$row->meetup->webpage"
|
|
||||||
>
|
>
|
||||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
<i class="fa fa-thin fa-browser mr-2"></i>
|
||||||
{{ __('Website') }}
|
{{ __('Show landing page') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
@endif
|
</div>
|
||||||
@if($row->meetup->twitter_username)
|
<div>
|
||||||
<x-button
|
@if($row->meetup->telegram_link)
|
||||||
xs
|
<x-button
|
||||||
black
|
xs
|
||||||
target="_blank"
|
black
|
||||||
:href="$row->meetup->twitter_username"
|
target="_blank"
|
||||||
>
|
:href="$row->meetup->telegram_link"
|
||||||
<i class="fa fa-brand fa-twitter mr-2"></i>
|
>
|
||||||
{{ __('Twitter') }}
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||||
</x-button>
|
{{ __('Telegram-Link') }}
|
||||||
@endif
|
</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>
|
</div>
|
||||||
|
|||||||
@@ -1,72 +1,86 @@
|
|||||||
<div class="flex flex-col space-y-1" wire:key="meetup_action_{{ $row->id }}">
|
<div class="flex flex-col space-y-1">
|
||||||
@if($row->meetup_events_count > 0)
|
<div>
|
||||||
|
@if($row->meetup_events_count > 0)
|
||||||
|
<x-button
|
||||||
|
xs
|
||||||
|
amber
|
||||||
|
wire:click="meetupEventSearch({{ $row->id }})">
|
||||||
|
<i class="fa fa-thin fa-calendar mr-2"></i>
|
||||||
|
{{ __('Show dates') }} ({{ $row->meetup_events_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->meetup_events_count < 1)
|
||||||
|
<x-button
|
||||||
|
xs
|
||||||
|
outlined
|
||||||
|
wire:click="meetupEventSearch({{ $row->id }})">
|
||||||
|
<i class="fa fa-thin fa-calendar-circle-exclamation mr-2"></i>
|
||||||
|
{{ __('Show dates') }} ({{ $row->meetup_events_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
<x-button
|
<x-button
|
||||||
xs
|
xs
|
||||||
amber
|
black
|
||||||
wire:click="meetupEventSearch({{ $row->id }})">
|
x-data="{
|
||||||
<i class="fa fa-thin fa-calendar mr-2"></i>
|
|
||||||
{{ __('Show dates') }} ({{ $row->meetup_events_count }})
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
@if($row->meetup_events_count < 1)
|
|
||||||
<x-button
|
|
||||||
xs
|
|
||||||
outlined
|
|
||||||
wire:click="meetupEventSearch({{ $row->id }})">
|
|
||||||
<i class="fa fa-thin fa-calendar-circle-exclamation mr-2"></i>
|
|
||||||
{{ __('Show dates') }} ({{ $row->meetup_events_count }})
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
<x-button
|
|
||||||
xs
|
|
||||||
black
|
|
||||||
x-data="{
|
|
||||||
textToCopy: '{{ route('meetup.ics', ['country' => $country ?? $row->city->country->code, 'meetup' => $row->id]) }}',
|
textToCopy: '{{ route('meetup.ics', ['country' => $country ?? $row->city->country->code, 'meetup' => $row->id]) }}',
|
||||||
}"
|
}"
|
||||||
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Calendar Stream Url copied!') }}',description:'{{ __('Paste the calendar stream link into a compatible calendar app.') }}',icon:'success'});"
|
@click.prevent="window.navigator.clipboard.writeText(textToCopy);window.$wireui.notify({title:'{{ __('Calendar Stream Url copied!') }}',description:'{{ __('Paste the calendar stream link into a compatible calendar app.') }}',icon:'success'});"
|
||||||
>
|
|
||||||
<i class="fa fa-thin fa-calendar-arrow-down mr-2"></i>
|
|
||||||
{{ __('Calendar Stream-Url') }} ({{ $row->meetup_events_count }})
|
|
||||||
</x-button>
|
|
||||||
<x-button
|
|
||||||
black
|
|
||||||
xs
|
|
||||||
:href="route('meetup.landing', ['country' => $country ?? $row->city->country->code, 'meetup' => $row->slug])"
|
|
||||||
>
|
|
||||||
<i class="fa fa-thin fa-browser mr-2"></i>
|
|
||||||
{{ __('Show landing page') }}
|
|
||||||
</x-button>
|
|
||||||
@if($row->telegram_link)
|
|
||||||
<x-button
|
|
||||||
xs
|
|
||||||
black
|
|
||||||
target="_blank"
|
|
||||||
:href="$row->telegram_link"
|
|
||||||
>
|
>
|
||||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
<i class="fa fa-thin fa-calendar-arrow-down mr-2"></i>
|
||||||
{{ __('Telegram-Link') }}
|
{{ __('Calendar Stream-Url') }} ({{ $row->meetup_events_count }})
|
||||||
</x-button>
|
</x-button>
|
||||||
@endif
|
</div>
|
||||||
@if($row->webpage)
|
<div>
|
||||||
<x-button
|
<x-button
|
||||||
xs
|
|
||||||
black
|
black
|
||||||
target="_blank"
|
|
||||||
:href="$row->webpage"
|
|
||||||
>
|
|
||||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
|
||||||
{{ __('Website') }}
|
|
||||||
</x-button>
|
|
||||||
@endif
|
|
||||||
@if($row->twitter_username)
|
|
||||||
<x-button
|
|
||||||
xs
|
xs
|
||||||
black
|
:href="route('meetup.landing', ['country' => $country ?? $row->city->country->code, 'meetup' => $row->slug])"
|
||||||
target="_blank"
|
|
||||||
:href="$row->twitter_username"
|
|
||||||
>
|
>
|
||||||
<i class="fa fa-brand fa-twitter mr-2"></i>
|
<i class="fa fa-thin fa-browser mr-2"></i>
|
||||||
{{ __('Twitter') }}
|
{{ __('Show landing page') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
@endif
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->telegram_link)
|
||||||
|
<x-button
|
||||||
|
xs
|
||||||
|
black
|
||||||
|
target="_blank"
|
||||||
|
:href="$row->telegram_link"
|
||||||
|
>
|
||||||
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||||
|
{{ __('Telegram-Link') }}
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->webpage)
|
||||||
|
<x-button
|
||||||
|
xs
|
||||||
|
black
|
||||||
|
target="_blank"
|
||||||
|
:href="$row->webpage"
|
||||||
|
>
|
||||||
|
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||||
|
{{ __('Website') }}
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
@if($row->twitter_username)
|
||||||
|
<x-button
|
||||||
|
xs
|
||||||
|
black
|
||||||
|
target="_blank"
|
||||||
|
:href="$row->twitter_username"
|
||||||
|
>
|
||||||
|
<i class="fa fa-brand fa-twitter mr-2"></i>
|
||||||
|
{{ __('Twitter') }}
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
<div wire:key="venues_action_{{ $row->id }}">
|
<div>
|
||||||
@if($row->course_events_count > 0)
|
<div>
|
||||||
<x-button amber wire:click="venueSearch({{ $row->id }})">
|
@if($row->course_events_count > 0)
|
||||||
{{ __('Show dates') }} ({{ $row->course_events_count }})
|
<x-button amber wire:click="venueSearch({{ $row->id }})">
|
||||||
</x-button>
|
{{ __('Show dates') }} ({{ $row->course_events_count }})
|
||||||
@endif
|
</x-button>
|
||||||
@if($row->course_events_count < 1)
|
@endif
|
||||||
<x-button outlined wire:click="venueSearch({{ $row->id }})">
|
</div>
|
||||||
{{ __('Show dates') }} ({{ $row->course_events_count }})
|
<div>
|
||||||
</x-button>
|
@if($row->course_events_count < 1)
|
||||||
@endif
|
<x-button outlined wire:click="venueSearch({{ $row->id }})">
|
||||||
|
{{ __('Show dates') }} ({{ $row->course_events_count }})
|
||||||
|
</x-button>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user