@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($poolInvests as $poolInvest) @empty @endforelse
@lang('Pool') @lang('Invest Amount') @lang('Invest Till') @lang('Return Date') @lang('Total Return')
{{ __($poolInvest->pool->name) }} {{ showAmount($poolInvest->invest_amount) }} {{ showDateTime($poolInvest->pool->start_date, 'M d, Y h:i A') }} {{ showDateTime($poolInvest->pool->end_date, 'M d, Y h:i A') }} @if ($poolInvest->pool->share_interest) {{ showAmount($poolInvest->invest_amount * (1 + $poolInvest->pool->interest / 100)) }} @else @lang('Not return yet!') @endif
{{ __($emptyMessage) }}
@if ($poolInvests->hasPages())
{{ paginateLinks($poolInvests) }}
@endif
@endsection