@extends('layouts.front') @push('css') @endpush @section('content') @if (in_array('Banner', $home_modules)) @endif @if (in_array('About', $home_modules))
about us
@lang('Who We are')

{{ $ps->about_title }}

@php echo $ps->about_text; @endphp

@lang('Read More')
@foreach ($counters as $key=>$data)
about

0

{{ $data->messurement }}

{{ $data->title }}
@endforeach
@endif @if (in_array('Profit Calculator', $home_modules))
profit
@lang('Profit Calculator')

{{ $ps->profit_title }}

@php echo $ps->profit_text; @endphp

@includeIf('includes.user.form-both') @csrf
@endif @if (in_array('Investment Plan', $home_modules))
@lang('Investment Plans & Pricing')

{{ $ps->plan_title }}

{{ 'Choose from flexible investment packages designed to match your financial goals — whether you are starting small or scaling big.' }}

@foreach ($plans->take(4) as $key=>$data) @php $schedule = \App\Models\ManageSchedule::where('time',$data->schedule_hour)->first(); @endphp
{{ $data->title }}
{{ $data->subtitle }}
{{ $data->profit_percentage }}%
@lang('Return')
  • @lang('Profit') {{ $data->lifetime_return == 1 ? 'Lifetime' : 'Every '.$schedule->name }}
  • @lang('Capital will back') {{ $data->captial_return == 1 ? 'Yes' : 'No'}}
  • @lang('Repeatable') @if ($data->profit_repeat == NULL) @lang('NO') @else {{ $data->profit_repeat.' Times' }} @endif
@if ($data->invest_type == 'range')
{{ showPrice($data->min_amount) }} - {{ showPrice($data->max_amount) }}
@else
{{ showPrice($data->fixed_amount) }}
@endif @if(auth()->user()) @else @lang('Invest Now') @endif
@endforeach
@endif @if (in_array('How To Start', $home_modules))
@lang('How To Get Started')

{{ $ps->start_title }}

@php echo $ps->start_text; @endphp

@foreach ($process as $key=>$data)
{{ $data->title}}

@php echo $data->details; @endphp

@endforeach
about
@endif @if (in_array('Choose', $home_modules)) @includeIf('partials.front.choose') @endif @if (in_array('Testimonials', $home_modules))
@endif
@endsection @push('js') @endpush