edit and news filed in products
This commit is contained in:
@@ -177,6 +177,7 @@ class VentureCapitalFundController extends Controller
|
||||
'valuation_per_sector' => $request->valuation_per_sector,
|
||||
'focused_funds' => $request->focused_funds,
|
||||
'trading_strategy' => $request->trading_strategy,
|
||||
'trading_strategy_used'=>$request->trading_strategy_used,
|
||||
'involved_in_short_selling' => $request->involved_in_short_selling,
|
||||
'minimum_investment' => $request->min_investment,
|
||||
]);
|
||||
|
||||
@@ -69,6 +69,11 @@ class HedgeFundResource extends JsonResource
|
||||
'involved_in_short_selling' => $this->involved_in_short_selling,
|
||||
'minimum_investment' => $this->minimum_investment,
|
||||
'company' => $this->companies,
|
||||
'regions_covered' => $this->regions_covered,
|
||||
'isin_code'=>$this->isin_code,
|
||||
'focused_real_estate_sectors'=>$this->focused_real_estate_sectors,
|
||||
'rera_complied_property' =>$this->rera_complied_property,
|
||||
'return_on_investment'=>$this->return_on_investment
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -64,7 +64,10 @@ class PrivateInvestmentInPublicEquityFundResource extends JsonResource
|
||||
'other_expenses' => $this->other_expenses,
|
||||
'focused_real_estate_sectors' => $this->focused_real_estate_sectors,
|
||||
'company' => $this->companies,
|
||||
'minimum_investment' => $this->minimum_investment
|
||||
'minimum_investment' => $this->minimum_investment,
|
||||
'target_irr'=>$this->target_irr,
|
||||
'focused_sectors_industries'=>$this->focused_sectors_industries,
|
||||
'rera_complied_property'=>$this->rera_complied_property
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 83 KiB |
@@ -1055,6 +1055,29 @@
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-md-6 mt-4">
|
||||
|
||||
<!--begin::Label-->
|
||||
|
||||
<label class="fs-6 fw-semibold form-label mt-3">
|
||||
|
||||
<span class="">Trading Strategy Used</span>
|
||||
|
||||
<!-- <i class="fas fa-exclamation-circle ms-1 fs-7" data-bs-toggle="tooltip" title="Enter the contact's name."></i> -->
|
||||
|
||||
</label>
|
||||
|
||||
<!--end::Label-->
|
||||
|
||||
<!--begin::Input-->
|
||||
|
||||
<input type="text" class="form-control form-control-solid" name="trading_strategy_used" placeholder='Enter Trading Strategy Used' value="{{$alternativeInvestmentFund->alternativeInvestmentFund->trading_strategy_used}}" />
|
||||
|
||||
<!--end::Input-->
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mt-4">
|
||||
|
||||
<!--begin::Label-->
|
||||
|
||||
@@ -317,6 +317,11 @@
|
||||
<p>Focused Funds</p>
|
||||
<span>{{ $productData->focused_funds }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Focused Sector Industries</p>
|
||||
{{-- @dd($productData) --}}
|
||||
<span>{{ $productData->focused_sectors_industries ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -376,7 +381,32 @@
|
||||
<p>Company</p>
|
||||
<span>{{ $hedgeFund->company == null ? '-' : $hedgeFund->company->company_name }}</span>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<p>ISIN Code</p>
|
||||
<span>{{ $hedgeFund->isin_code == null ? '-' : $hedgeFund->isin_code }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Focused Real Estate Sectors</p>
|
||||
<span>{{ $hedgeFund->focused_real_estate_sectors == null ? '-' : $hedgeFund->focused_real_estate_sectors }}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{-- @dd($hedgeFund) --}}
|
||||
<div class="tables row">
|
||||
<div class="col-md-4">
|
||||
<p>Regions Covered</p>
|
||||
<span>{{ $hedgeFund->regions_covered == null ? '-' : $hedgeFund->regions_covered }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Rera Complied Property</p>
|
||||
<span>{{ $hedgeFund->rera_complied_property == null ? '-' : $hedgeFund->rera_complied_property }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Return On Investment</p>
|
||||
<span>{{ $hedgeFund->return_on_investment == null ? '-' : $hedgeFund->return_on_investment }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -295,7 +295,7 @@
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Return on investment</p>
|
||||
<span>{{ $longOnlyEquityFund->return_on_investment_irr_dpi_rvpi_tvpi ?? '-' }}</span>
|
||||
<span>{{ $longOnlyEquityFund->return_on_investment ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -320,6 +320,16 @@
|
||||
<p>Valuation per security (NAV)</p>
|
||||
<span>{{ $productData->valuation_per_security_nav ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p> Focused Sector Industries </p>
|
||||
<span>{{ $longOnlyEquityFund->focused_sectors_industries ?? '-' }}</span>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<p> Rera Complied Property </p>
|
||||
<span>{{ $longOnlyEquityFund->rera_complied_property ?? '-' }}</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -334,13 +344,13 @@
|
||||
<p>Minimum Investment</p>
|
||||
<span>{{ $longOnlyEquityFund->minimum_investment ?? '-' }}</span>
|
||||
</div>
|
||||
{{-- <div class="col-md-4">
|
||||
<div class="col-md-4">
|
||||
<p>Trading strategy</p>
|
||||
<span>{{ $longOnlyEquityFund->trading_strategy ?? '-' }}</span>
|
||||
</div> --}}
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Trading Strategy Used</p>
|
||||
<span>{{ $productData->trading_strategy_used ?? '-' }}</span>
|
||||
<span>{{ $longOnlyEquityFund->trading_strategy_used ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -328,6 +328,19 @@
|
||||
<p>Company</p>
|
||||
<span>{{ $pipe->company->company_name ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Target IRR </p>
|
||||
<span>{{ $pipe->target_irr ?? '-' }}</span>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<p>Focused Real Estate Sectors </p>
|
||||
<span>{{ $pipe->focused_sectors_industries ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Rera Complied Property </p>
|
||||
<span>{{ $pipe->rera_complied_property ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user