From b22f36df4782867bfc0465786eb2c75dd74d852f Mon Sep 17 00:00:00 2001 From: Philipp Hofer Date: Mon, 20 Oct 2025 21:37:52 +0200 Subject: [PATCH] update --- public_html/resources/views/event/view.blade.php | 10 +++++++++- public_html/resources/views/programm.blade.php | 9 ++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/public_html/resources/views/event/view.blade.php b/public_html/resources/views/event/view.blade.php index da21e931..b969c63a 100644 --- a/public_html/resources/views/event/view.blade.php +++ b/public_html/resources/views/event/view.blade.php @@ -23,7 +23,15 @@ @foreach($event->categories as $cat) {{$cat->name}} - @endforeach + @endforeach + + @if($event->payableWithCultureCard) +
+ + Kulturkarte + +
+ @endif {!! $event->text !!} diff --git a/public_html/resources/views/programm.blade.php b/public_html/resources/views/programm.blade.php index f6551da9..c801b387 100644 --- a/public_html/resources/views/programm.blade.php +++ b/public_html/resources/views/programm.blade.php @@ -12,13 +12,20 @@ {{ $event->title }}
- + {{date('d. m. Y', strtotime($event->start_date))}} @if($event->end_date != $event->start_date) bis {{date('d. m. Y', strtotime($event->end_date))}} @endif
+ @if($event->payableWithCultureCard) +
+ + Kulturkarte + +
+ @endif

{{$event->shorttext}}