@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content') {{--

Printing Date & Time: {{ $extra['current_date_time'] }}

--}}

{{ config('settings.company_name')}}

{{ config('settings.address_1') }}


{{ $extra['voucher_type'] }}

@if(!empty($search_by['from']) && !empty($search_by['to']))

From: {{ date(Config('settings.date_format'),strtotime(trim(str_replace('/', '-', $search_by['from'])))) }} To: {{ date(Config('settings.date_format'),strtotime(trim(str_replace('/', '-', $search_by['to'])))) }}

@else

{{ $search_by['upto'] }}

@endif
@php $total_net_amount= 0; @endphp @if( !empty($items) ) @foreach( $items as $item ) @if ($item) @php $total_net_amount+=$item->investment_amount + $item->investor_profit; @endphp @endif @endforeach @endif
{{ $search_by['branch'] == 0 ? 'ALL PROJECT' : $items[0]->branch->name }}
Investor Project Product Cost Investment % Investment {{$transaction->systemSettingCurrency()}} Sale Profit Profit Share of Investor Profit Share of Principle Net Amount {{$transaction->systemSettingCurrency()}}
{{$item->investor_name}} {{$item->name}} {{$item->product_unique_id}} {{$transaction->convert_money_format($item->total_cost)}} {{$item->investment_percentage}} {{$transaction->convert_money_format($item->investment_amount)}} {{$transaction->convert_money_format($item->total_sell_cost)}} {{$transaction->convert_money_format($item->total_profit)}} {{$transaction->convert_money_format($item->investor_profit)}} {{$transaction->convert_money_format($item->principle_profit)}} {{$transaction->convert_money_format($item->investment_amount + $item->investor_profit)}}
Total {{$transaction->convert_money_format($total_net_amount)}}

@stop