@extends('admin.layouts.master') @section('title', __('Invest Transactions')) @php $typeName = __("All Transactions"); if($type=='transfer') { $typeName = __("Transferred History"); } if($type=='profit') { $typeName = __("Profit Settelment"); } @endphp @section('content')

{{ __('Invest Transactions') }}

{!! __('Total :num transactions.', ['num' => ''.$transactions->total().'' ]) !!}

{{ __(':StatementType', ['statementType' => $typeName]) }}
@if(filled($transactions))
{{ __('Statement ID') }}
{{ __('Details') }}
{{ __('Account') }}
{{ __('Type') }}
{{ __('Amount') }}
@foreach($transactions as $tnx)
@include('investment.admin.statement.transaction-row', ['transaction' => $tnx])
@endforeach
@if(filled($transactions)) {{ $transactions->appends(request()->all())->links('misc.pagination') }} @endif
@else

{{ __('No transaction found.') }}

@endif
@endsection @push('modal') @endpush @push('scripts') @endpush