![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/resources/themes/jobs/ |
@isset($product) <div class="block-pricing mt-125 mt-md-50"> <div class="row"> @foreach($product->activePlans as $plan) <div class="col-lg-3 col-md-6 wow animate__animated animate__fadeInUp" data-wow-delay=".1s"> <div class="box-pricing-item {{ $plan->recommended?'most-popular':'' }}"> <div class="box-info-price"> <span class="text-price for-month display-month"> @if($plan->free_plan) <span class="text-price for-month display-month">{{ \Payments::currency(0.00) }} </span> @else <span class="text-price for-month display-month"> {{ \Payments::currency($plan->price) }} </span> <span class="text-month">/{!! $plan->cycle_caption !!}</span> @endif </span> </div> <div> <h4 class="mb-15">{{ $plan->name }}</h4> <p class="text-desc-package mb-30"> For most businesses that want to otpimize web queries </p> </div> <ul class="list-package-feature"> @foreach($product->activeFeatures as $feature) @if($plan_feature = $plan->features()->where('feature_id',$feature->id)->first()) <li style="background: url({{ Theme::url('assets/imgs/theme/icons/check-circle.svg') }}) no-repeat left center;"> @if(!empty($plan_feature->pivot->plan_caption)) {{ $plan_feature->pivot->plan_caption }} @else @if($feature->type=="boolean") @if($plan_feature->pivot->value) @endif @else {{$plan_feature->pivot->value }} {{$feature->unit }} @endif {{ $feature->caption }} @endif </li> @else <li style="background: url({{ Theme::url('assets/imgs/theme/icons/icon-remove.svg') }}) no-repeat left center; margin-left:5px;"> {{ $feature->caption }} </li> @endif @endforeach </ul> <div> @auth @if(user() && user()->subscribed(null, $plan->id)) <a href="#" class="btn btn-border" {{ $plan->recommended?'btn-white-border':'btn-dark-border' }}"> @lang('corals-jobs::labels.pricing.current_package') </a> <br/> {{ user()->currentSubscription(null, $plan->id)->ends_at?('ends at: '.format_date_time(user()->currentSubscription(null, $plan->id)->ends_at)):'' }} @else <a class="btn btn-border" {{ $plan->recommended?'btn-white-border':'btn-dark-border' }}" href="{{ url('subscriptions/checkout/'.$plan->hashed_id) }}"> @lang('corals-jobs::labels.pricing.subscribe_now') </a> @endif @else <a href="{{ url('jobs-admin/register') }}" class="btn btn-border"> @lang('corals-jobs::labels.pricing.subscribe_now')</a> @endauth </div> </div> </div> @endforeach </div> </div> @else <p class="text-center text-danger"> <strong>@lang('corals-jobs::labels.pricing.product_not_found')</strong></p> @endisset