{{ $loop->iteration }}
|
{!! Str::words($investor_user->project->name, 5, '... ') !!} |
{{ $investor_user->invest_step }} |
@if($investor_user->invest_step >= 4)
{{ $investor_user->contract_number }}
@else
/
@endif
|
@if($investor_user->currencyValue == null)
{!! number_format((float)str_replace(',', '', $investor_user->rangeValue) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@else
@if($investor_user->currencyValue == 'eur')
{!! number_format((float)str_replace(',', '', $investor_user->rangeValue) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@endif
@if($investor_user->currencyValue == 'mkd')
{{ number_format((float)$investor_user->rangeValue, 0, '.', ',') }}
@endif
@endif
{{ __('ден.') }}
|
{{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $investor_user->project->start_date)->format('d/m/Y') }}
|
{{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $investor_user->project->end_date)->format('d/m/Y') }}
|
{{ number_format($investor_user->investor_procenton, 2, '.', ',') }}% |
@if($investor_user->rata != null && $investor_user->rata != "" && $investor_user->rata != 0)
@if($investor_user->currencyValue == null)
{!! number_format((float)str_replace(',', '', $investor_user->rata) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@else
@if($investor_user->currencyValue == 'eur')
{!! number_format((float)str_replace(',', '', $investor_user->rata) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@endif
@if($investor_user->currencyValue == 'mkd')
{{ number_format($investor_user->rata, 0, '.', ',') }}
@endif
@endif
{{ __('ден.') }}
/
{{ $investor_user->broj_rati }} {{ __('Рати') }}.
@else
/
@endif
|
@if($investor_user->currencyValue == null)
{!! number_format((float)str_replace(',', '', $investor_user->profit) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@else
@if($investor_user->currencyValue == 'eur')
{!! number_format((float)str_replace(',', '', $investor_user->profit) * (float)$eur_to_mkd_rate, 0, '.', ',') !!}
@endif
@if($investor_user->currencyValue == 'mkd')
{{ number_format($investor_user->profit, 0, '.', ',') }}
@endif
@endif
{{ __('ден.') }}
|
|
@endforeach