@extends($activeTemplate . 'layouts.master') @section('content')
@if (count($profits) > 0)
@forelse(@$profits as $profit) @empty @endforelse
@lang('Property') @lang('Investment Id') @lang('TRX') @lang('Amount') @lang('Date')
{{ __($profit->property->title) }} {{ $profit->invest->investment_id }} {{ @$profit->transaction->trx }} {{ showAmount(@$profit->amount) }}
{{ showDateTime(@$profit->updated_at) }}
{{ diffForHumans($profit->updated_at) }}
{{ __($emptyMessage) }}
@if ($profits->hasPages()) {{ $profits->links() }} @endif @else @include($activeTemplate . 'partials.empty', ['message' => 'No investment found!']) @endif
@endsection