@extends($activeTemplate . 'layouts.master')
@section('content')
@lang('Plan Information')
@php
$plan = $invest->plan;
@endphp
@lang('Basic Information')
@lang('Other Information')
@lang('All Interests & Compound Investment')
@else
@lang('All Interests')
@endif
@if ($transactions->hasPages())
@forelse($transactions as $trx)
@lang('TRX')
@lang('Transacted')
@lang('Amount')
@lang('Post Balance')
@lang('Details')
@empty
{{ $trx->trx }}
{{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }}
{{ showAmount($trx->post_balance) }}
{{ __($trx->details) }}
@endforelse
{{ __($emptyMessage) }}