$package->is_recommended,
'border-gray-300 dark:border-gray-600' => ! $package->is_recommended
])>
@if ($package->is_recommended)
{{ $package->package_name }}
@if ($package->is_free)
@lang('modules.billing.free')
@else
{{ $package->currency->currency_symbol }}{{ $package->package_type === App\Enums\packageType::LIFETIME ? $package->price : ($isAnnual ? $package->annual_price : $package->monthly_price) }}
@endif
@if ($package->package_type === App\Enums\packageType::DEFAULT)
@lang('modules.package.defaultPlan')
@lang('modules.package.planExpire')
@elseif ($package->package_type === App\Enums\packageType::LIFETIME)
@lang('modules.billing.lifetimeAccess')
@elseif (!$package->is_free)
@lang('modules.billing.billed') {{ $isAnnual ? __('modules.billing.annually') : __('modules.billing.monthly') }}
@endif
@foreach ($modules as $module)
$loop->index % 2 == 0])>
@if ($package->modules->contains($module))
@else
@endif
@endforeach
@if ($package->is_free || $paymentActive ||
($package->id == $restaurant->package_id && $restaurant->package_type == ($isAnnual ? 'annual' : 'monthly')) ||
$package->package_type == App\Enums\PackageType::DEFAULT)