$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
                                    {{ global_currency_format($package->package_type === App\Enums\packageType::LIFETIME ? $package->price : ($isAnnual ? $package->annual_price : $package->monthly_price), $package->currency_id) }}
                                @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
                        
 
                        @php
                            $packageAllModules = array_merge(
                                $package->modules->pluck('name')->toArray(),
                                $package->additional_features ? json_decode($package->additional_features, true) : []
                            );
                        @endphp
                        @foreach ($AllModulesWithFeature as $moduleName)
                            
 $loop->index % 2 == 0])>
                                @if (in_array($moduleName, $packageAllModules))
                                    
                                        
                                    
                                @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)