@if(@$allotted_startups && @count($allotted_startups)) @php $sno = 0; @endphp
Assign Funds To StartUps (StartUps already alloted to Investor)
@foreach($allotted_startups as $a_startups) @php $startup_id = @$a_startups->id; $investor_fund_id = @$a_startups->investor_fund_id; $startup_curr_val = (@$a_startups->startup_curr_val) ? @$a_startups->startup_curr_val * 1.00 : ''; $eqty_per = (@$a_startups->eqty_per) ? @$a_startups->eqty_per * 1.00 : ''; $fund_recvd = (@$a_startups->fund_recvd) ? @$a_startups->fund_recvd * 1.00 : ''; $fund_remark = trim(@$a_startups->fund_remark); $investor_req_approved_count = $a_startups->investor_req_approved_count; $investor_user_id = $a_startups->investor_user_id; @endphp @endforeach
S.No. Startup Name Founder Name Investments Current Valuation Equity % Received Investment () Remarks Action
{{ ++$sno }}. {{ $a_startups->company_name }} {{ $a_startups->name }} @if($investor_req_approved_count) Investments @else -- @endif
@if(@$investor_fund_id && @$investor_fund_id != 0) @else -- @endif
@endif @if(@$not_allotted_startups && @count($not_allotted_startups)) @php $sno1 = 0; @endphp
Assign Funds To StartUps (StartUps not alloted to Investor)
@foreach($not_allotted_startups as $n_startups) @php $n_startup_id = @$n_startups->id; $startup_launch_id = @$n_startups->startup_launch_id; $investor_req_approved_count = $n_startups->investor_req_approved_count; $investor_user_id = $n_startups->investor_user_id; $startup_curr_val = (@$n_startups->startup_curr_val) ? @$n_startups->startup_curr_val * 1.00 : ''; @endphp @endforeach
S.No. Startup Name Founder Name Investments StartUp Valuation Equity % Received Investment Remarks
{{ ++$sno1 }}. {{ $n_startups->company_name }} {{ $n_startups->name }} @if($investor_req_approved_count) Investments @else -- @endif
@endif @if(@$sno == 0 && @$sno1 == 0)
No StartUp found ...!!
@else
@endif