@extends($activeTemplate . 'layouts.frontend') @section('content') @php $plans = App\Models\Plan::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
@include($activeTemplate . 'partials.plan', ['plans' => $plans])
@php $workProcess = getContent('how_it_work.content', true); $workProcessElements = getContent('how_it_work.element', null, false, true); @endphp

{{ __(@$workProcess->data_values->title) }}

@php echo __(@$workProcess->data_values->subtitle) @endphp

@foreach ($workProcessElements as $process)
{{ __($process->data_values->title) }}

{{ __($process->data_values->content) }}

@endforeach
@endsection