From 09f9a53144ba4e907c34ee86cff8ec7b4eb495d2 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Fri, 21 Nov 2025 17:37:26 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Improve=20UI=20consistency=20across?= =?UTF-8?q?=20components?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/livewire/cities/index.blade.php | 4 +- .../views/livewire/courses/index.blade.php | 68 +++++++++++-------- resources/views/livewire/dashboard.blade.php | 7 +- .../views/livewire/meetups/index.blade.php | 28 +++++--- .../views/livewire/venues/index.blade.php | 4 +- 5 files changed, 63 insertions(+), 48 deletions(-) diff --git a/resources/views/livewire/cities/index.blade.php b/resources/views/livewire/cities/index.blade.php index 767201e..c4401fb 100644 --- a/resources/views/livewire/cities/index.blade.php +++ b/resources/views/livewire/cities/index.blade.php @@ -75,13 +75,13 @@ new class extends Component { @if($city->createdBy) - {{ $city->createdBy->name }} + {{ Str::limit($city->createdBy->name, 30) }} @endif
@auth - + {{ __('Edit') }} @endauth diff --git a/resources/views/livewire/courses/index.blade.php b/resources/views/livewire/courses/index.blade.php index dc2ad07..6514030 100644 --- a/resources/views/livewire/courses/index.blade.php +++ b/resources/views/livewire/courses/index.blade.php @@ -64,19 +64,23 @@ new class extends Component { @foreach ($courses as $course) - - - + + + + @@ -104,22 +108,28 @@ new class extends Component { - - {{ __('Bearbeiten') }} - - - {{ __('Neues Event erstellen') }} - +
+
+ + {{ __('Bearbeiten') }} + +
+
+ + {{ __('Neues Event erstellen') }} + +
+
@endforeach diff --git a/resources/views/livewire/dashboard.blade.php b/resources/views/livewire/dashboard.blade.php index 2891af9..3d11b38 100644 --- a/resources/views/livewire/dashboard.blade.php +++ b/resources/views/livewire/dashboard.blade.php @@ -65,7 +65,7 @@ new class extends Component { }; ?>
-
+
{{ __('Meine nächsten Meetup Termine') }} @@ -93,7 +93,7 @@ new class extends Component { @endif
-
+
{{ __('Meine Meetups') }} @@ -170,7 +170,4 @@ new class extends Component {
- {{--
- -
--}}
diff --git a/resources/views/livewire/meetups/index.blade.php b/resources/views/livewire/meetups/index.blade.php index 35bc1c6..8640d43 100644 --- a/resources/views/livewire/meetups/index.blade.php +++ b/resources/views/livewire/meetups/index.blade.php @@ -70,7 +70,9 @@ new class extends Component { @foreach ($meetups as $meetup) - +