Здравейте, може ли малко помощ искам по някакъв начин да прекратя показването на безплатния box
ето и снимка
искам да изважда само боксовете който са платени

ето и снимка
искам да изважда само боксовете който са платени

PHP:
@extends('frontend.layouts.app')
@section('styles')
@endsection
@section('content')
@if($site_innerpage_header_background_type == \App\Customization::SITE_INNERPAGE_HEADER_BACKGROUND_TYPE_DEFAULT)
<div class="site-blocks-cover inner-page-cover overlay" style="background-image: url( {{ asset('frontend/images/placeholder/header-inner.webp') }});">
@elseif($site_innerpage_header_background_type == \App\Customization::SITE_INNERPAGE_HEADER_BACKGROUND_TYPE_COLOR)
<div class="site-blocks-cover inner-page-cover overlay" style="background-color: {{ $site_innerpage_header_background_color }};">
@elseif($site_innerpage_header_background_type == \App\Customization::SITE_INNERPAGE_HEADER_BACKGROUND_TYPE_IMAGE)
<div class="site-blocks-cover inner-page-cover overlay" style="background-image: url( {{ Storage::disk('public')->url('customization/' . $site_innerpage_header_background_image) }});">
@elseif($site_innerpage_header_background_type == \App\Customization::SITE_INNERPAGE_HEADER_BACKGROUND_TYPE_YOUTUBE_VIDEO)
<div class="site-blocks-cover inner-page-cover overlay" style="background-color: #333333;">
@endif
@if($site_innerpage_header_background_type == \App\Customization::SITE_INNERPAGE_HEADER_BACKGROUND_TYPE_YOUTUBE_VIDEO)
<div data-youtube="{{ $site_innerpage_header_background_youtube_video }}"></div>
@endif
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-10" data-aos="fade-up" data-aos-delay="400">
<div class="row justify-content-center mt-5">
<div class="col-md-8 text-center">
<h1 style="color: {{ $site_innerpage_header_title_font_color }};">{{ __('theme_directory_hub.pricing.head-title') }}</h1>
<p class="mb-0" style="color: {{ $site_innerpage_header_paragraph_font_color }};">{{ __('theme_directory_hub.pricing.head-description') }}</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-section">
<div class="container">
@if(!empty($login_user))
<div class="row justify-content-center">
<div class="col-10 col-md-12">
<div class="alert alert-info" role="alert">
@if($login_user->isAdmin())
{{ __('theme_directory_hub.pricing.info-admin') }}
@else
@if($login_user->hasPaidSubscription())
{{ __('theme_directory_hub.pricing.info-user-paid', ['site_name' => $site_name]) }}
@else
{{ __('theme_directory_hub.pricing.info-user-free', ['site_name' => $site_name]) }}
@endif
@endif
</div>
</div>
</div>
@endif
<div class="row justify-content-center">
@foreach($plans as $plans_key => $plan)
<div class="col-10 col-md-6 col-lg-4">
<div class="card mb-4 box-shadow text-center">
<div class="card-header">
<h4 class="my-0 font-weight-normal">
@if(!empty($login_user))
@if($login_user->isUser())
@if($login_user->hasPaidSubscription())
@if($login_user->subscription->plan->id == $plan->id)
<span class="text-success">
<i class="fas fa-check-circle"></i>
</span>
@endif
@else
@if($plan->plan_type == \App\Plan::PLAN_TYPE_FREE)
<span class="text-success">
<i class="fas fa-check-circle"></i>
</span>
@endif
@endif
@endif
@endif
@endsection