@extends(activeTemplate() .'layouts.master') @section('style') @stop @push('home-breadcrumb') @endpush @section('content')
@if(@$homeContent->value->can_see_featured == 1)

@php echo __($homeContent->value->featured_title) @endphp

@foreach($plans as $k => $data) @php $time_name = \App\TimeSetting::where('time', $data->times)->first(); @endphp
{{$data->name}}
{{__($data->interest)}} @if($data->interest_status == 1) % @else {{__($general->cur_text)}} @endif
{{__($time_name->name)}} / @if($data->lifetime_status == 0) {{__($data->repeat_time)}} @lang('Times') @else @lang('Lifetime') @endif
    @if($data->capital_back_status == 1)
  • @lang('Capital Will Return Back')
  • @elseif($data->capital_back_status == 0)
  • @lang('Capital Will Store')
  • @endif
  • @lang('24/7Support')
@if($data->fixed_amount == 0)
@lang('Min.') {{__($general->cur_sym)}}{{__($data->minimum)}} @lang('Max:') {{__($general->cur_sym)}}{{__($data->maximum)}}
@else
· @lang('Invest Amount'): {{__($general->cur_sym)}}{{__($data->maximum)}}
@endif @lang('Invest Now')
@endforeach
@endif @if(@$homeContent->value->can_see_info == 1)

@php echo __($homeContent->value->site_information) @endphp

* @lang('TOTAL ACCOUNTS')
{{$totalAccounts}}
* @lang('TOTAL DEPOSITS')
{{$general->cur_sym}}{{formatter_money($totalDeposit)}}
* @lang('TOTAL WITHDRAW')
{{$general->cur_sym}}{{formatter_money($totalWithdraw)}}
* @lang('RUNNING DATE')
{{date('Y-d-m')}}
Map
@endif @if(@$homeContent->value->can_see_trx == 1)

@php echo __($homeContent->value->transaction_title) @endphp

@foreach($latestDeposit as $data) @endforeach
@lang('Name') @lang('Date') @lang('Amount') @lang('Currency') @lang('Deposit')
{{$data->user->fullname}}
{{date('M d, Y',strtotime($data->created_at))}} {{__($general->cur_sym)}} {{formatter_money($data->amount)}} {{__($data->gateway->name)}} {{diffForHumans($data->created_at)}}
@foreach($latestWithdraw as $data) @endforeach
@lang('Name') @lang('Date') @lang('Amount') @lang('Currency') @lang('Withdraw')
{{$data->user->fullname}}
{{date('M d, Y',strtotime($data->created_at))}} {{__($general->cur_sym)}} {{formatter_money($data->amount)}} {{__($data->method->name)}} {{diffForHumans($data->created_at)}}
@endif @if(@$homeContent->value->can_see_map == 1)
Map
@endif @if(@$homeContent->value->subscription_form == 1) @include(activeTemplate().'partials.subscribe') @endif @if(@$homeContent->value->we_accept == 1) @include(activeTemplate().'partials.we-accept') @endif @endsection @section('script') @endsection