This commit is contained in:
2025-10-22 21:53:01 +02:00
parent b22f36df47
commit 08c47d6fc2
2 changed files with 13 additions and 7 deletions

View File

@@ -109,12 +109,17 @@ $i = 0;
<span id="customerName">{{$seat->user()->withTrashed()->first()->title}} {{$seat->user()->withTrashed()->first()->firstname}} {{$seat->user()->withTrashed()->first()->lastname}} </span>
</div>
<div class="right">
<span id="reduction">
@if($seat->concession()->first()->name != "Vollpreis")
ermäßigt
@endif
</span>
<div class="right">
<span id="reduction">@if($seat->concession()->first()->name != "Vollpreis")
@if(str_contains($seat->concession()->first()->name, ".ABO "))
{{ $seat->concession()->first()->name }}
@else
ermäßigt
@endif
@endif</span>
<span id="price">EUR {{ number_format($price/100, 2) }}</span>
</div>