@extends('layouts.app') @section('title', 'Investor Profit Report') @section('content')

Investor Profit Report

Investment summary with profit distributed and due

PDF Excel CSV

৳{{ number_format($data->sum('total_investment')) }}

Total Investment

৳{{ number_format($data->sum('total_distributed')) }}

Total Distributed

৳{{ number_format($data->sum('profit_due')) }}

Profit Due

@forelse($data as $i => $row) @empty @endforelse
# Investor Mobile Investment Distributed Profit Due
{{ $i + 1 }} {{ $row->name }} {{ $row->mobile }} ৳{{ number_format($row->total_investment) }} ৳{{ number_format($row->total_distributed) }} ৳{{ number_format($row->profit_due) }}
No investor data found.
@endsection