mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add landing pages for meetups
This commit is contained in:
57
resources/views/vendor/livewire-tables/includes/columns/boolean.blade.php
vendored
Normal file
57
resources/views/vendor/livewire-tables/includes/columns/boolean.blade.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
@php
|
||||
$theme = $component->getTheme();
|
||||
@endphp
|
||||
|
||||
@if ($theme === 'tailwind')
|
||||
@if ($status)
|
||||
@if ($type === 'icons')
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block h-5 w-5 @if ($successValue === true) text-green-500 @else text-red-500 @endif" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
@elseif ($type === 'yes-no')
|
||||
@if ($successValue === true)
|
||||
<span>Yes</span>
|
||||
@else
|
||||
<span>No</span>
|
||||
@endif
|
||||
@endif
|
||||
@else
|
||||
@if ($type === 'icons')
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="inline-block h-5 w-5 @if ($successValue === false) text-green-500 @else text-red-500 @endif" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
@elseif ($type === 'yes-no')
|
||||
@if ($successValue === false)
|
||||
<span>Yes</span>
|
||||
@else
|
||||
<span>No</span>
|
||||
@endif
|
||||
@endif
|
||||
@endif
|
||||
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
||||
@if ($status)
|
||||
@if ($type === 'icons')
|
||||
<svg xmlns="http://www.w3.org/2000/svg" style="width:1.2em;height:1.2em;" class="d-inline-block @if ($successValue === true) text-success @else text-danger @endif" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
@elseif ($type === 'yes-no')
|
||||
@if ($successValue === true)
|
||||
<span>Yes</span>
|
||||
@else
|
||||
<span>No</span>
|
||||
@endif
|
||||
@endif
|
||||
@else
|
||||
@if ($type === 'icons')
|
||||
<svg xmlns="http://www.w3.org/2000/svg" style="width:1.2em;height:1.2em;" class="d-inline-block @if ($successValue === false) text-success @else text-danger @endif" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
@elseif ($type === 'yes-no')
|
||||
@if ($successValue === false)
|
||||
<span>Yes</span>
|
||||
@else
|
||||
<span>No</span>
|
||||
@endif
|
||||
@endif
|
||||
@endif
|
||||
@endif
|
||||
5
resources/views/vendor/livewire-tables/includes/columns/button-group.blade.php
vendored
Normal file
5
resources/views/vendor/livewire-tables/includes/columns/button-group.blade.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<div {!! count($attributes) ? $column->arrayToAttributes($attributes) : '' !!}>
|
||||
@foreach($buttons as $button)
|
||||
{!! $button->getContents($row) !!}
|
||||
@endforeach
|
||||
</div>
|
||||
1
resources/views/vendor/livewire-tables/includes/columns/image.blade.php
vendored
Normal file
1
resources/views/vendor/livewire-tables/includes/columns/image.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<img src="{{ $path }}" {!! count($attributes) ? $column->arrayToAttributes($attributes) : '' !!} />
|
||||
1
resources/views/vendor/livewire-tables/includes/columns/link.blade.php
vendored
Normal file
1
resources/views/vendor/livewire-tables/includes/columns/link.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
<a href="{{ $path }}" {!! count($attributes) ? $column->arrayToAttributes($attributes) : '' !!}>{{ $title }}</a>
|
||||
20
resources/views/vendor/livewire-tables/includes/debug.blade.php
vendored
Normal file
20
resources/views/vendor/livewire-tables/includes/debug.blade.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<div>
|
||||
@if ($component->debugIsEnabled())
|
||||
@php
|
||||
$debuggable = [
|
||||
'query' => $component->getQuerySql(),
|
||||
'filters' => $component->getAppliedFilters(),
|
||||
'sorts' => $component->getSorts(),
|
||||
'search' => $component->getSearch(),
|
||||
'select-all' => $component->getSelectAllStatus(),
|
||||
'selected' => $component->getSelected(),
|
||||
];
|
||||
@endphp
|
||||
|
||||
<p><strong>@lang('Debugging Values'):</strong></p>
|
||||
|
||||
@if (! app()->runningInConsole())
|
||||
<div class="mb-4">@dump($debuggable)</div>
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
30
resources/views/vendor/livewire-tables/includes/offline.blade.php
vendored
Normal file
30
resources/views/vendor/livewire-tables/includes/offline.blade.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
@if ($component->offlineIndicatorIsEnabled())
|
||||
@if ($theme === 'tailwind')
|
||||
<div wire:offline.class.remove="hidden" class="hidden">
|
||||
<div class="rounded-md bg-red-100 p-4 mb-4 dark:border-red-800 dark:bg-red-500">
|
||||
<div class="flex">
|
||||
<div class="flex-shrink-0">
|
||||
<svg class="h-5 w-5 text-red-400 dark:text-white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
||||
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd" />
|
||||
</svg>
|
||||
</div>
|
||||
<div class="ml-3">
|
||||
<h3 class="text-sm font-medium text-red-800 dark:text-white">
|
||||
@lang('You are not connected to the internet.')
|
||||
</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
|
||||
<div wire:offline.class.remove="d-none" class="d-none">
|
||||
<div class="alert alert-danger d-flex align-items-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" style="width:1.3em;height:1.3em;" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
|
||||
<span class="d-inline-block ml-2">@lang('You are not connected to the internet.')</span>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@endif
|
||||
Reference in New Issue
Block a user