Spamworldpro Mini Shell
Spamworldpro


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/rentpix.corals.io/resources/themes/cms/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/rentpix.corals.io/resources/themes/cms/pricing.blade.php
@isset($product)
    <div class="row">
        @foreach($product->activePlans as $plan)
            <div class="col-md-3 margin-b-30">
                <div class="price-box {{ $plan->recommended?'best-plan':'' }}">
                    <div class="price-header">
                        @if($plan->free_plan)
                            <h1>{{  \Payments::currency(0.00 ) }}</h1>
                        @else
                            <h1>{{  \Payments::currency($plan->price) }}
                                <span class="peroid">{!! $plan->cycle_caption  !!}</span></h1>
                        @endif
                        <h4>{{ $plan->name }}</h4>
                    </div>
                    <ul class="list-unstyled price-features">
                        @foreach($product->activeFeatures as $feature)
                            @if($plan_feature = $plan->features()->where('feature_id',$feature->id)->first())
                                <li>
                                    @if(!empty($plan_feature->pivot->plan_caption))
                                        {{ $plan_feature->pivot->plan_caption }}
                                    @else
                                        @if($feature->type=="boolean")
                                            @if($plan_feature->pivot->value)
                                                <i class="fa fa-check"></i>
                                            @endif
                                        @else
                                            {{$plan_feature->pivot->value }} {{$feature->unit }}
                                        @endif
                                        {{ $feature->caption }}
                                    @endif
                                </li>
                            @else
                                <li>
                                    <i class="fa fa-times"></i>
                                    {{ $feature->caption }}
                                </li>
                            @endif
                        @endforeach
                    </ul>
                    <div class="price-footer">
                        @if(user() && user()->subscribed(null, $plan->id))
                            <a href="#"
                               class="btn btn-rounded {{ $plan->recommended?'btn-white-border':'btn-dark-border' }}">
                                @lang('corals-basic::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-rounded {{ $plan->recommended?'btn-white-border':'btn-dark-border' }}"
                               href="{{ url('subscriptions/checkout/'.$plan->hashed_id) }}">
                                @lang('corals-basic::labels.pricing.subscribe_now')
                            </a>
                        @endif
                    </div>
                </div>
            </div><!--/col-->
        @endforeach
    </div>
@else
    <p class="text-center text-danger"><strong>@lang('corals-basic::labels.pricing.product_cannot_found')</strong></p>
@endisset

Spamworldpro Mini