trim subscriptions

This commit is contained in:
David Bomba 2022-12-18 22:12:29 +11:00
parent 8049e4d294
commit 61ae25b2be

View File

@ -209,7 +209,7 @@
@foreach($bundle->toArray() as $item)
<div class="flex justify-between mt-1 mb-1">
<span class="font-light text-sm">{{ substr(str_replace(["BR","\r","\n","<BR>","<BR />","<br>","<br />"]," ", $item['product']), 0, 30) . "..." }} x {{ $item['qty'] }}</span>
<span class="font-light text-sm">{{ substr(str_replace(["\r","\n","<BR>","<BR />","<br>","<br />"]," ", $item['product']), 0, 30) . "..." }} x {{ $item['qty'] }}</span>
<span class="font-bold text-sm">{{ $item['price'] }}</span>
</div>
@endforeach