File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -325,8 +325,16 @@ class="text-2xl font-semibold"
325325 class =" flex items-start gap-1.5 pt-5"
326326 aria-label =" Price: ${{ number_format ($discounted ? 150 : 250 ) } } per year"
327327 >
328- <div class =" text-5xl font-semibold" >
329- ${{ number_format ($discounted ? 150 : 250 ) } }
328+
329+ <div >
330+ @if ($discounted )
331+ <strike class =" text-2xl font-semibold" >
332+ ${{ number_format (250 ) } }
333+ </strike >
334+ @endif
335+ <div class =" text-5xl font-semibold" >
336+ ${{ number_format ($discounted ? 150 : 250 ) } }
337+ </div >
330338 </div >
331339 <div class =" self-end pb-1.5 text-zinc-500" >per year</div >
332340 </div >
@@ -480,10 +488,17 @@ class="text-2xl font-semibold"
480488 {{-- Price --}}
481489 <div
482490 class =" flex items-start gap-1.5 pt-5"
483- aria-label =" Price: ${{ number_format ($discounted ? 350 : 1000 ) } } per year"
491+ aria-label =" Price: ${{ number_format ($discounted ? 250 : 1000 ) } } per year"
484492 >
485- <div class =" text-5xl font-semibold" >
486- ${{ number_format ($discounted ? 350 : 1000 ) } }
493+ <div >
494+ @if ($discounted )
495+ <strike class =" text-2xl font-semibold" >
496+ ${{ number_format (1000 ) } }
497+ </strike >
498+ @endif
499+ <div class =" text-5xl font-semibold" >
500+ ${{ number_format ($discounted ? 250 : 1000 ) } }
501+ </div >
487502 </div >
488503 <div class =" self-end pb-1.5 text-zinc-500" >per year</div >
489504 </div >
You can’t perform that action at this time.
0 commit comments