@php $events = [ [ 'title' => app()->getLocale() == 'fa' ? 'تخفیف ویژه' : 'Special Offer', 'discount' => '50%', 'gradient' => 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', ], [ 'title' => app()->getLocale() == 'fa' ? 'پیشنهاد ویژه' : 'Hot Deal', 'discount' => '70%', 'gradient' => 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', ], [ 'title' => app()->getLocale() == 'fa' ? 'رایگان' : 'Free', 'discount' => app()->getLocale() == 'fa' ? '۱ ماه' : '1 Month', 'gradient' => 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', ], ]; @endphp
@foreach($events as $event)
{{ $event['discount'] }} {{ $event['title'] }}
@endforeach