Merge pull request #208 from Ritikeshyadav/RitikeshFreeu

Ritikesh freeu
This commit is contained in:
Ritikeshyadav
2024-05-29 18:39:12 +05:30
committed by GitHub
4 changed files with 83 additions and 67 deletions

View File

@@ -4671,7 +4671,9 @@ h3.primary-no-data {
.company-img img {
width: 150px;
}
span.color-red {
color: red;
}
/*======responsive=====*/
@media (max-width: 2560px) {

View File

@@ -24,7 +24,7 @@
<div id="kt_app_content_container" class="app-container container-xxl">
<div class="row max-w-100 mt-10 index_table">
<div class="top_header d-flex justify-content-between">
<p class='fs-2 fw-bold'>Manage User Productss</p>
<p class='fs-2 fw-bold'>Manage User Products</p>
<div class="table_right_options d-flex align-items-center">
<a class="action_icon" href="{{ route('store-user-product') }}">
<button type="button" class="btn btn-light-primary me-3">

View File

@@ -1,93 +1,110 @@
@extends('Frontend.layouts.master')
@section('content')
<div class="market-list">
<div class="banner right-ivestment pb-0">
{{-- <div class="banner right-ivestment pb-0">
<div class="container row">
<div class="content" data-aos="fade-right">
<h1 class="invest-header si-hd text-center">Sell your investment's today!</h1>
{{-- <ul class="si-hd_p p-0 d-flex justify-content-between">
<li>Verified Buyers</li>
<li>Expert Verification</li>
<li>Sell From Your Home</li>
</ul> --}}
</div>
{{-- <div class="col-md-6 bgn-image" data-aos="fade-left">
<img src="/public/assets/media/FrontendImages/r-invest.png">
</div> --}}
</div>
</div>
</div> --}}
<div class="form">
<div class="container">
<form id="aif-seller-form" method="POST">
@csrf
<div class="row">
<div class="form-group col-md-6">
<label class="mandatory">Name of the AIF Fund</label>
<label class="mandatory">Name of the AIF Fund <span class="color-red">*</span></label>
<input type="text" name="name_of_the_aif_fund"
value="{{ $aifProduct->name_of_the_aif_fund }}" >
value="{{ $aifProduct->name_of_the_aif_fund }}">
</div>
<div class="form-group col-md-6">
<label>Fund Category</label>
<label>Fund Category <span class="color-red">*</span></label>
<select name="fund_category" id="fund_category">
<option value="">Select Fund Category</option>
<option value="Category I" {{ $aifProduct->fund_category == 'Category I' ? 'selected' : '' }}>Category I</option>
<option value="Category II" {{ $aifProduct->fund_category == 'Category II' ? 'selected' : '' }}>Category II</option>
<option value="Category III" {{ $aifProduct->fund_category == 'Category III' ? 'selected' : '' }}>Category III</option>
<option value="Category I"
{{ $aifProduct->fund_category == 'Category I' ? 'selected' : '' }}>Category I</option>
<option value="Category II"
{{ $aifProduct->fund_category == 'Category II' ? 'selected' : '' }}>Category II</option>
<option value="Category III"
{{ $aifProduct->fund_category == 'Category III' ? 'selected' : '' }}>Category III
</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Fund Structure</label>
<label>Fund Structure <span class="color-red">*</span></label>
<select name="fund_structure" id="">
<option value="">Select Fund Structure</option>
<option value="Open" {{ $aifProduct->fund_structure == 'Open' ? 'selected' : '' }}>Open</option>
<option value="Closed" {{ $aifProduct->fund_structure == 'Closed' ? 'selected' : '' }}>Closed</option>
<option value="Open" {{ $aifProduct->fund_structure == 'Open' ? 'selected' : '' }}>Open
</option>
<option value="Closed" {{ $aifProduct->fund_structure == 'Closed' ? 'selected' : '' }}>
Closed</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Type Of Fund</label>
<select name="type_of_fund" id="type_of_fund" >
<label>Type Of Fund <span class="color-red">*</span></label>
<select name="type_of_fund" id="type_of_fund">
<option value="">Select Type Of Fund</option>
<option value="Angel Fund" {{ $aifProduct->type_of_fund == 'Angel Fund' ? 'selected' : '' }}>Angel Fund</option>
<option value="Venture Capital Fund" {{ $aifProduct->type_of_fund == 'Venture Capital Fund' ? 'selected' : '' }}>Venture Capital Fund</option>
<option value="Infrastructure Fund" {{ $aifProduct->type_of_fund == 'Infrastructure Fund' ? 'selected' : '' }}>Infrastructure Fund</option>
<option value="Private Real Estate Fund" {{ $aifProduct->type_of_fund == 'Private Real Estate Fund' ? 'selected' : '' }}>Private Real Estate Fund</option>
<option value="Private Equity Fund" {{ $aifProduct->type_of_fund == 'Private Equity Fund' ? 'selected' : '' }}>Private Equity Fund</option>
<option value="Distressed Asset Fund" {{ $aifProduct->type_of_fund == 'Distressed Asset Fund' ? 'selected' : '' }}>Distressed Asset Fund</option>
<option value="Private Credit Fund" {{ $aifProduct->type_of_fund == 'Private Credit Fund' ? 'selected' : '' }}>Private Credit Fund</option>
<option value="Long Only Quity Funds" {{ $aifProduct->type_of_fund == 'Long Only Quity Funds' ? 'selected' : '' }}>Long Only Quity Funds</option>
<option value="Hedge Fund" {{ $aifProduct->type_of_fund == 'Hedge Fund' ? 'selected' : '' }}>Hedge Fund</option>
<option value="PIPE Fund" {{ $aifProduct->type_of_fund == 'PIPE Fund' ? 'selected' : '' }}>PIPE Fund</option>
<option value="Angel Fund"
{{ $aifProduct->type_of_fund == 'Angel Fund' ? 'selected' : '' }}>Angel Fund</option>
<option value="Venture Capital Fund"
{{ $aifProduct->type_of_fund == 'Venture Capital Fund' ? 'selected' : '' }}>Venture
Capital Fund</option>
<option value="Infrastructure Fund"
{{ $aifProduct->type_of_fund == 'Infrastructure Fund' ? 'selected' : '' }}>
Infrastructure Fund</option>
<option value="Private Real Estate Fund"
{{ $aifProduct->type_of_fund == 'Private Real Estate Fund' ? 'selected' : '' }}>Private
Real Estate Fund</option>
<option value="Private Equity Fund"
{{ $aifProduct->type_of_fund == 'Private Equity Fund' ? 'selected' : '' }}>Private
Equity Fund</option>
<option value="Distressed Asset Fund"
{{ $aifProduct->type_of_fund == 'Distressed Asset Fund' ? 'selected' : '' }}>Distressed
Asset Fund</option>
<option value="Private Credit Fund"
{{ $aifProduct->type_of_fund == 'Private Credit Fund' ? 'selected' : '' }}>Private
Credit Fund</option>
<option value="Long Only Quity Funds"
{{ $aifProduct->type_of_fund == 'Long Only Quity Funds' ? 'selected' : '' }}>Long Only
Quity Funds</option>
<option value="Hedge Fund"
{{ $aifProduct->type_of_fund == 'Hedge Fund' ? 'selected' : '' }}>Hedge Fund</option>
<option value="PIPE Fund"
{{ $aifProduct->type_of_fund == 'PIPE Fund' ? 'selected' : '' }}>PIPE Fund</option>
<option value="Others">Others</option>
</select>
</div>
<div class="form-group col-md-6">
<label>Fund Strategy</label>
<input type="text" name="fund_strategy" value="{{ $aifProduct->fund_strategy }}" >
<input type="text" name="fund_strategy" value="{{ $aifProduct->fund_strategy }}">
</div>
<div class="form-group col-md-6">
<label>Fund Manager Name</label>
<input type="text" name="fund_manager_name" value="{{ $aifProduct->fund_manager_name }}" >
<input type="text" name="fund_manager_name" value="{{ $aifProduct->fund_manager_name }}">
</div>
<div class="form-group col-md-6">
<label>Sponsor</label>
<input type="text" name="sponsor" value="{{ $aifProduct->sponsor }}" >
<input type="text" name="sponsor" value="{{ $aifProduct->sponsor }}">
</div>
<div class="form-group col-md-6">
<label>Credit Rating (if any)</label>
<input type="text" name="credit_rating" value="{{ $aifProduct->credit_rating }}" >
<input type="text" name="credit_rating" value="{{ $aifProduct->credit_rating }}">
</div>
<div class="form-group col-md-6">
<label>Total Capital Commitment</label>
<input type="number" name="total_capital_commitment" value="{{ $aifProduct->total_capital_commitment }}">
<label>Total Capital Commitment <span class="color-red">*</span></label>
<input type="number" name="total_capital_commitment"
value="{{ $aifProduct->total_capital_commitment }}">
</div>
<div class="form-group col-md-6">
<label>Uncalled Capital Commitment</label>
<label>Uncalled Capital Commitment <span class="color-red">*</span></label>
<input type="number" name="uncalled_capital_commitment"
value="{{ $aifProduct->uncalled_capital_commitment }}">
</div>
<div class="form-group col-md-6">
<label>Date Of Final Close</label>
<input type="date" name="date_of_final_close" value="{{ $aifProduct->date_of_final_close }}">
<input type="date" name="date_of_final_close"
value="{{ $aifProduct->date_of_final_close }}">
</div>
<div class="form-group col-md-6">
<label>Tenure from Final Close (In Years)</label>
@@ -95,12 +112,12 @@
value="{{ $aifProduct->tenure_from_final_close }}">
</div>
<div class="form-group col-md-6">
<label>Current Nav/Latest Nav</label>
<label>Current Nav/Latest Nav <span class="color-red">*</span></label>
<input type="number" name="current_or_latest_nav"
value="{{ $aifProduct->current_or_latest_nav }}">
</div>
<div class="form-group col-md-6">
<label>No. Of Units Held</label>
<label>No. Of Units Held <span class="color-red">*</span></label>
<input type="number" name="no_of_units_held" value="{{ $aifProduct->no_of_units_held }}">
</div>
<div class="form-group col-md-6">
@@ -108,11 +125,11 @@
<input type="number" name="no_of_units_you_wish_to_sell">
</div>
<div class="form-group col-md-6">
<label>Expected Sale Price per unit</label>
<label>Expected Sale Price per unit <span class="color-red">*</span></label>
<input type="number" name="expected_sale_per_unit">
</div>
<div class="form-group col-md-6">
<label>Latest Valuation Date</label>
<label>Latest Valuation Date <span class="color-red">*</span></label>
<input type="date" id="latest_valuation_date" name="latest_valuation_date">
</div>
<div class="form-check">
@@ -159,7 +176,8 @@
{{-- </a> --}}
</div>
<div class="modal-body">
<p>Thank you for submitting the seller form. Our team will promptly review your submission and keep you informed regarding the status of your product listing."</p>
<p>Thank you for submitting the seller form. Our team will promptly review your submission and keep
you informed regarding the status of your product listing."</p>
</div>
<div class="modal-footer" style="margin-bottom: -13px;">
{{-- <button type="button" class="btn btn-secondary close_btn"
@@ -172,26 +190,30 @@
</div>
{{-- end popup --}}
@endsection
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.full.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.full.min.js">
</script>
@section('scripts')
<script>
$('#fund_category').change(function(){
$('#fund_category').change(function() {
value = $(this).val();
// alert(value);
if(value == 'Category I')
{
if (value == 'Category I') {
$('#type_of_fund').html('');
$('#type_of_fund').html("<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Venture Capital Fund'>Venture Capital Fund</option><option value='Angel Fund'>Angel Fund</option><option value='Infrastructure Fund'>Infrastructure Fund</option><option value='Others'>Others</option></select>");
$('#type_of_fund').html(
"<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Venture Capital Fund'>Venture Capital Fund</option><option value='Angel Fund'>Angel Fund</option><option value='Infrastructure Fund'>Infrastructure Fund</option><option value='Others'>Others</option></select>"
);
}
if(value == 'Category II')
{
if (value == 'Category II') {
$('#type_of_fund').html('');
$('#type_of_fund').html("<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Long Only Quity Funds'>Long Only Quity Funds</option><option value='Hedge Fund'>Hedge Fund</option><option value='PIPE Fund'>PIPE Fund</option><option value='Others'>Others</option></select>");
$('#type_of_fund').html(
"<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Long Only Quity Funds'>Long Only Quity Funds</option><option value='Hedge Fund'>Hedge Fund</option><option value='PIPE Fund'>PIPE Fund</option><option value='Others'>Others</option></select>"
);
}
if(value == 'Category III')
{
if (value == 'Category III') {
$('#type_of_fund').html('');
$('#type_of_fund').html("<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Private Real Estate Fund'>Private Real Estate Fund</option><option value='Private Equity Fund'>Private Equity Fund</option><option value='Distressed Asset Fund'>Distressed Asset Fund</option><option value='Private Credit Fund'>Private Credit Fund</option><option value='Others'>Others</option></select>");
$('#type_of_fund').html(
"<select name='type_of_fund' id='type_of_fund'><option value=''>Select Type Of Fund</option><option value='Private Real Estate Fund'>Private Real Estate Fund</option><option value='Private Equity Fund'>Private Equity Fund</option><option value='Distressed Asset Fund'>Distressed Asset Fund</option><option value='Private Credit Fund'>Private Credit Fund</option><option value='Others'>Others</option></select>"
);
}
})

View File

@@ -1,21 +1,13 @@
@extends('Frontend.layouts.master')
@section('content')
<div class="market-list">
<div class="banner right-ivestment pb-0">
{{-- <div class="banner right-ivestment pb-0">
<div class="container row">
<div class="content" data-aos="fade-right">
<h1 class="invest-header si-hd text-center">Sell your investment's today!</h1>
{{-- <ul class="si-hd_p p-0 d-flex justify-content-between">
<li>Verified Buyers</li>
<li>Expert Verification</li>
<li>Sell From Your Home</li>
</ul> --}}
</div>
{{-- <div class="col-md-6 bgn-image" data-aos="fade-left">
<img src="/public/assets/media/FrontendImages/r-invest.png">
</div> --}}
</div>
</div>
</div> --}}
<div class="form">
<div class="container">
<form id="fre-seller-form" method="POST">