Се процесира...
@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') }}