@extends('layouts.front') @push('css') @endpush @section('content')
@lang('Investment Plans & Pricing')

{{ $ps->plan_title }}

{{ 'At Fluxe Assets Ltd., we believe that wealth building should be accessible, transparent, and tailored to individual goals. Our carefully curated investment plans are designed to meet a range of financial objectives — from capital preservation to long-term growth. Whether you are a first-time investor or a seasoned portfolio builder, our packages offer flexible options to help you invest with confidence.' }}

@if (count($plans) == 0)

{{__('No Plan Found')}}

@else @foreach ($plans 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'}}
@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
@includeIf('partials.front.choose') @endsection @push('js') @endpush