@php $planCaption = getContent('plan.content', true); $plans = App\Models\Plan::with('timeSetting') ->whereHas('timeSetting', function ($time) { $time->where('status', 1); }) ->where('status', 1) ->where('featured', 1) ->get(); $gatewayCurrency = null; if (auth()->check()) { $gatewayCurrency = App\Models\GatewayCurrency::whereHas('method', function ($gate) { $gate->where('status', 1); }) ->with('method') ->orderby('method_code') ->get(); } @endphp

{{ __(@$planCaption->data_values->heading_w) }} {{ __(@$planCaption->data_values->heading_c) }}

{{ __(@$planCaption->data_values->sub_heading) }}

@include($activeTemplate . 'partials.plan', ['plans' => $plans])