{{ __('Се процесира...') }}
@foreach ($investor_users as $investor_user) @endforeach
# {{ __('Проект') }} {{ __('Договор') }} {{ __('Влог') }} {{ __('Почеток на градба') }} {{ __('Завршување на проектот') }} {{ __('Вкупна заработка') }} {{ __('Рок на изградба') }} {{ __('Профит') }} {{ __('Статус') }} {{ __('Опции') }}
{{ $loop->iteration }} {!! Str::words($investor_user->project->name, 5, '... ') !!} {{ $investor_user->contract_number }} @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, '.', ',') }}% {{ $investor_user->project->return_of_investment }} месеци @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 {{ __('ден.') }} @if($investor_user->completed == 1) {{ __('Завршена') }} @endif @if($investor_user->completed == 0) {{ __('Активна') }} @endif
{{ $investor_users->onEachSide(3)->links('custom-pagination-links-view') }}