Merge branch 'main' of https://github.com/Ritikeshyadav/my-freeu into megha
This commit is contained in:
@@ -34,8 +34,7 @@ class DashboardController extends Controller
|
||||
public function index(Request $request)
|
||||
{
|
||||
$check = checkSidebarAccess('dashboard');
|
||||
if(!$check)
|
||||
{
|
||||
if (!$check) {
|
||||
abort(404);
|
||||
}
|
||||
// dd(123);
|
||||
@@ -85,7 +84,7 @@ class DashboardController extends Controller
|
||||
$meetings = LeadTasksMeeting::where('host', auth()->user()->id)->meetings()->get();
|
||||
$users = User::admins()->get();
|
||||
// dd($leads);
|
||||
return view('Admin.general-dashboard', compact('companyCount', 'a', 'leads', 'tasks', 'meetings','users','userCount','investingUserCount','totalProductCount'));
|
||||
return view('Admin.general-dashboard', compact('companyCount', 'a', 'leads', 'tasks', 'meetings', 'users', 'userCount', 'investingUserCount', 'totalProductCount'));
|
||||
}
|
||||
|
||||
public function getCommissionData(Request $request)
|
||||
@@ -147,10 +146,10 @@ class DashboardController extends Controller
|
||||
return '₹ ' . $result;
|
||||
}
|
||||
|
||||
public function personalDashboard(Request $request){
|
||||
public function personalDashboard(Request $request)
|
||||
{
|
||||
$check = checkSidebarAccess('personal-dashboard');
|
||||
if(!$check)
|
||||
{
|
||||
if (!$check) {
|
||||
abort(404);
|
||||
}
|
||||
// dd(123);
|
||||
@@ -203,7 +202,7 @@ class DashboardController extends Controller
|
||||
$meetings = LeadTasksMeeting::where('host', (string)auth()->user()->id)->meetings()->get();
|
||||
// dd($meetings);
|
||||
$users = User::admins()->get();
|
||||
return view('Admin.personal-dashboard', compact('companyCount', 'a', 'leads', 'tasks', 'meetings','users','userCount','investingUserCount','totalProductCount'));
|
||||
return view('Admin.personal-dashboard', compact('companyCount', 'a', 'leads', 'tasks', 'meetings', 'users', 'userCount', 'investingUserCount', 'totalProductCount'));
|
||||
}
|
||||
|
||||
public function editTask(Request $request)
|
||||
@@ -224,7 +223,7 @@ class DashboardController extends Controller
|
||||
return response()->json(['status' => 400, 'message' => $validationMessage]);
|
||||
}
|
||||
|
||||
$leadNotes = LeadTasksMeeting::where('id',$request->task_id)->update([
|
||||
$leadNotes = LeadTasksMeeting::where('id', $request->task_id)->update([
|
||||
'subject' => $request->subject,
|
||||
'due_date' => $request->due_date,
|
||||
'priority' => $request->priority,
|
||||
@@ -241,7 +240,8 @@ class DashboardController extends Controller
|
||||
};
|
||||
}
|
||||
|
||||
public function editMeeting(Request $request){
|
||||
public function editMeeting(Request $request)
|
||||
{
|
||||
$validator = Validator::make($request->post(), [
|
||||
'meeting_id' => 'required',
|
||||
'location' => 'required',
|
||||
@@ -260,7 +260,7 @@ class DashboardController extends Controller
|
||||
return response()->json(['status' => 400, 'message' => $validationMessage]);
|
||||
}
|
||||
|
||||
$leadMeeting = LeadTasksMeeting::where('id',$request->meeting_id)->update([
|
||||
$leadMeeting = LeadTasksMeeting::where('id', $request->meeting_id)->update([
|
||||
'location' => $request->location,
|
||||
'from' => $request->from,
|
||||
'to' => $request->to,
|
||||
@@ -277,7 +277,6 @@ class DashboardController extends Controller
|
||||
} else {
|
||||
return response()->json(['status' => 400, 'message' => 'Error Creating Lead Meeting!']);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
public function deleteTask(Request $request)
|
||||
@@ -319,7 +318,8 @@ class DashboardController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
public function updateSingleAdminNotification(Request $request){
|
||||
public function updateSingleAdminNotification(Request $request)
|
||||
{
|
||||
$user = User::find(auth()->user()->id);
|
||||
$user->notifications->where('id', $request->not_id)->markAsRead();
|
||||
return response()->json(['status' => 200, 'message' => 'Notification mark as read']);
|
||||
@@ -336,11 +336,12 @@ class DashboardController extends Controller
|
||||
return $messages;
|
||||
}
|
||||
}
|
||||
|
||||
public function readSpecificNotification(Request $request){
|
||||
|
||||
public function readSpecificNotification(Request $request)
|
||||
{
|
||||
// dd($request->all());
|
||||
$id = $request->id;
|
||||
if($id){
|
||||
if ($id) {
|
||||
$notification = auth()->user()->unreadNotifications->where('id', $id)->markAsRead();
|
||||
// if(!$notification){
|
||||
$newUser = '';
|
||||
@@ -349,37 +350,42 @@ class DashboardController extends Controller
|
||||
$buyerForm = '';
|
||||
$contactUs = '';
|
||||
$leadAssigned = '';
|
||||
foreach(getAllAdminNotifications() as $data){
|
||||
$message = $data->data['message'] ;
|
||||
foreach (getAllAdminNotifications() as $data) {
|
||||
$message = $data->data['message'];
|
||||
$created_at = $data->created_at->diffForHumans();
|
||||
$id = $data->id;
|
||||
if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'New Users')
|
||||
{
|
||||
$newUser .=$this->notificationData($message, $created_at, $id);
|
||||
}else if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Submitted KYC'){
|
||||
$submittedKyc .=$this->notificationData($message, $created_at, $id);
|
||||
}else if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Seller Form'){
|
||||
$sellerForm .=$this->notificationData($message, $created_at, $id);
|
||||
}else if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Buyer Form'){
|
||||
$buyerForm .=$this->notificationData($message, $created_at, $id);
|
||||
}else if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Contact Us'){
|
||||
$contactUs .=$this->notificationData($message, $created_at, $id);
|
||||
}else if(array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Leads Assigned'){
|
||||
$leadAssigned .=$this->notificationData($message, $created_at, $id);
|
||||
|
||||
$read_at = $data->read_at;
|
||||
if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'New Users') {
|
||||
$newUser .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
} else if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Submitted KYC') {
|
||||
$submittedKyc .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
} else if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Seller Form') {
|
||||
$sellerForm .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
} else if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Buyer Form') {
|
||||
$buyerForm .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
} else if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Contact Us') {
|
||||
$contactUs .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
} else if (array_key_exists('notification_type', $data->data) && $data->data['notification_type'] == 'Leads Assigned') {
|
||||
$leadAssigned .= $this->notificationData($message, $created_at, $id, $read_at);
|
||||
}
|
||||
}
|
||||
$notificationStatus = array('newUser'=>$newUser,'submittedKyc'=>$submittedKyc,'sellerForm'=>$sellerForm,'buyerForm'=>$buyerForm,'contactUs'=>$contactUs,'leadAssigned'=>$leadAssigned);
|
||||
return response()->json(['status'=>200,'message'=>"marked as read",'data'=>$notificationStatus]);
|
||||
// }
|
||||
$notificationStatus = array('newUser' => $newUser, 'submittedKyc' => $submittedKyc, 'sellerForm' => $sellerForm, 'buyerForm' => $buyerForm, 'contactUs' => $contactUs, 'leadAssigned' => $leadAssigned);
|
||||
return response()->json(['status' => 200, 'message' => "marked as read", 'data' => $notificationStatus]);
|
||||
// }
|
||||
}
|
||||
return response()->json(['status'=>201,'message'=>"something error"]);
|
||||
return response()->json(['status' => 201, 'message' => "something error"]);
|
||||
}
|
||||
|
||||
public function notificationData($message, $created_at, $id){
|
||||
$data = ' <div class="d-flex align-items-start">
|
||||
|
||||
public function notificationData($message, $created_at, $id, $read_at)
|
||||
{
|
||||
$color = $read_at ? '#808080' : 'black';
|
||||
$font_weight = $read_at ? '300' : '600';
|
||||
$icon_color_light = $read_at ? 'bg-light-warning' : '';
|
||||
$icon_color_dark = $read_at ? '' : 'style="background-color: #c18948;"';
|
||||
$data = ' <a class="notify_id" data-notify-id="'.$id.'">
|
||||
<div class="d-flex align-items-start mb-2" style="color:' . $color . '">
|
||||
<div class="symbol symbol-35px me-4">
|
||||
<span class="symbol-label bg-light-warning">
|
||||
<span class="symbol-label '.$icon_color_light.'" '.$icon_color_dark.'>
|
||||
<span class="svg-icon svg-icon-2 svg-icon-warning">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.3" d="M20 15H4C2.9 15 2 14.1 2 13V7C2 6.4 2.4 6 3 6H21C21.6 6 22 6.4 22 7V13C22 14.1 21.1 15 20 15ZM13 12H11C10.5 12 10 12.4 10 13V16C10 16.5 10.4 17 11 17H13C13.6 17 14 16.6 14 16V13C14 12.4 13.6 12 13 12Z" fill="currentColor"/>
|
||||
@@ -389,11 +395,11 @@ class DashboardController extends Controller
|
||||
</span>
|
||||
</div>
|
||||
<div class="mb-0 me-2">
|
||||
<div class="text-gray-400 fs-7">'.$message.'</div>
|
||||
<div class="fs-7" style="font-weight: ' . $font_weight . ';">' . $message . '</div>
|
||||
</div>
|
||||
<span class="badge badge-light fs-8 me-2">'.$created_at.'</span>
|
||||
<a class="badge badge-light fs-8 notify_id" data-notify-id="'.$id.'"><i class="fa fa-trash" aria-hidden="true"></i></a>
|
||||
</div>';
|
||||
<span class="badge badge-light fs-8 me-2">' . $created_at . '</span>
|
||||
</div> </a>';
|
||||
// <a class="badge badge-light fs-8 notify_id" data-notify-id="'.$id.'"><i class="fa fa-trash" aria-hidden="true"></i></a>
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -673,7 +673,7 @@ class DashboardController extends Controller
|
||||
// dd(session::get('sellerFormData'));
|
||||
$sellerFormUpdateCreate = MarketplaceSellerForm::updateOrCreate([
|
||||
'users_id' => auth()->guard('users')->user()->id
|
||||
],[session::get('sellerFormData')]);
|
||||
],session::get('sellerFormData'));
|
||||
// dd($sellerFormUpdateCreate);
|
||||
$aifSellerForm = MarketplaceAlternativeInvestmentFundSeller::create([
|
||||
'seller_forms_id' => MarketplaceSellerForm::where('users_id', auth()->guard('users')->user()->id)->value('id'),
|
||||
@@ -699,10 +699,10 @@ class DashboardController extends Controller
|
||||
'listing_status' => 'Hide',
|
||||
'status' => 'Pending'
|
||||
]);
|
||||
session::forget('sellerFormData');
|
||||
if ($aifSellerForm) {
|
||||
$user = User::find(auth()->guard('users')->user()->id);
|
||||
$userNotify = $this->sendNotificationToUser($user->name, 'Alternative Investment Fund');
|
||||
session::forget('sellerFormData');
|
||||
return response()->json(['status' => 200, 'message' => 'Alternative Investment Fund Form Submitted For Review']);
|
||||
}
|
||||
return response()->json(['status' => 400, 'message' => 'Alternative Investment Fund Form Could Not Be Submitted!']);
|
||||
@@ -736,8 +736,7 @@ class DashboardController extends Controller
|
||||
}
|
||||
$sellerFormUpdateCreate = MarketplaceSellerForm::updateOrCreate([
|
||||
'users_id' => auth()->guard('users')->user()->id
|
||||
],[session::get('sellerFormData')]);
|
||||
|
||||
],session::get('sellerFormData'));
|
||||
|
||||
$freSellerForm = MarketplaceFractionalRealEstateSeller::create([
|
||||
'seller_forms_id' => MarketplaceSellerForm::where('users_id', auth()->guard('users')->user()->id)->value('id'),
|
||||
@@ -759,10 +758,10 @@ class DashboardController extends Controller
|
||||
'listing_status' => 'Hide',
|
||||
'status' => 'Pending'
|
||||
]);
|
||||
session::forget('sellerFormData');
|
||||
if ($freSellerForm) {
|
||||
$user = User::find(auth()->guard('users')->user()->id);
|
||||
$userNotify = $this->sendNotificationToUser($user->name, 'Fractional Real Estate');
|
||||
session::forget('sellerFormData');
|
||||
return response()->json(['status' => 200, 'message' => 'Fractional Real Estate Form Submitted For Review']);
|
||||
}
|
||||
return response()->json(['status' => 400, 'message' => 'Fractional Real Estate Form Could Not Be Submitted!']);
|
||||
@@ -1075,7 +1074,7 @@ class DashboardController extends Controller
|
||||
}
|
||||
$sellerFormUpdateCreate = MarketplaceSellerForm::updateOrCreate([
|
||||
'users_id' => auth()->guard('users')->user()->id
|
||||
],[session::get('sellerFormData')]);
|
||||
],session::get('sellerFormData'));
|
||||
|
||||
$aifSellerForm = MarketplaceAlternativeInvestmentFundSeller::create([
|
||||
'seller_forms_id' => MarketplaceSellerForm::where('users_id', $request->user()->id)->value('id'),
|
||||
@@ -1100,10 +1099,10 @@ class DashboardController extends Controller
|
||||
'status' => 'Pending',
|
||||
'latest_valuation_date' => $request->latest_valuation_date, //latest_valuation_date added by hritik on 09-04-24
|
||||
]);
|
||||
session::forget('sellerFormData');
|
||||
if ($aifSellerForm) {
|
||||
$user = User::find($request->user()->id);
|
||||
$userNotify = $this->sendNotificationToUser($user->name, 'Alternative Investment Fund');
|
||||
session::forget('sellerFormData');
|
||||
return response()->json(['status' => 200, 'message' => 'Alternative Investment Fund Form Submitted For Review']);
|
||||
}
|
||||
return response()->json(['status' => 400, 'message' => 'Alternative Investment Fund Form Could Not Be Submitted!']);
|
||||
@@ -1137,7 +1136,7 @@ class DashboardController extends Controller
|
||||
}
|
||||
$sellerFormUpdateCreate = MarketplaceSellerForm::updateOrCreate([
|
||||
'users_id' => auth()->guard('users')->user()->id
|
||||
],[session::get('sellerFormData')]);
|
||||
],session::get('sellerFormData'));
|
||||
|
||||
// dd($request->all(),$request->user()->id,request()->user()->id);
|
||||
$freSellerForm = MarketplaceFractionalRealEstateSeller::create([
|
||||
@@ -1159,10 +1158,10 @@ class DashboardController extends Controller
|
||||
'latest_valuation_date' => $request->latest_valuation_date, //latest_valuation_date added by hritik on 09-04-24
|
||||
|
||||
]);
|
||||
session::forget('sellerFormData');
|
||||
if ($freSellerForm) {
|
||||
$user = User::find($request->user()->id);
|
||||
$userNotify = $this->sendNotificationToUser($user->name, 'Fractional Real Estate');
|
||||
session::forget('sellerFormData');
|
||||
return response()->json(['status' => 200, 'message' => 'Fractional Real Estate Form Submitted For Review']);
|
||||
}
|
||||
return response()->json(['status' => 400, 'message' => 'Fractional Real Estate Form Could Not Be Submitted!']);
|
||||
|
||||
@@ -120,7 +120,7 @@ class MarketPlaceController extends Controller
|
||||
// dd($offering);
|
||||
// $status = MarketplaceBuyerForm::where(['associated_id'=>$offering['data']->id,'status'=>'Sold'])->exists() ? 'SOLD':'OPEN';
|
||||
$status = '';
|
||||
$checkBIDExist = MarketplaceBuyerForm::where('associated_id', $offering['data']->id)->first();
|
||||
$checkBIDExist = MarketplaceBuyerForm::where('associated_id', $offering['data']->id)->where('status', 'Sold')->first();
|
||||
// dd($checkBIDExist);
|
||||
if ($checkBIDExist) {
|
||||
$buyerData = MarketplaceBuyerForm::where('associated_id', $offering['data']->id)->where('status', 'Sold')->get();
|
||||
|
||||
@@ -82,8 +82,8 @@ class AlternativeInvestmentFundImport implements ToCollection, WithHeadingRow
|
||||
'manager' => $row['manager'],
|
||||
'trustee' => $row['trustee'],
|
||||
'auditor' => $row['auditor'],
|
||||
'valuer_tax_advisor' => $row['valuertax_advisor'] ?? null,
|
||||
'credit_rating' => $row['credit_rating_if_any'] ?? null,
|
||||
'valuer_tax_advisor' => $row['valuertax_advisor'] ?? $row['valuer_tax_advisor'] ?? null,
|
||||
'credit_rating' => $row['credit_rating_if_any'] ?? $row['credit_rating'] ?? null,
|
||||
'open_date' => getConvertedDate($row['open_date']),
|
||||
'first_close_date' => getConvertedDate($row['1st_close_date']),
|
||||
'final_close_date' => getConvertedDate($row['final_close_date']),
|
||||
@@ -104,7 +104,7 @@ class AlternativeInvestmentFundImport implements ToCollection, WithHeadingRow
|
||||
'isin_code' => $row['isin_code'] ?? null,
|
||||
'focused_real_estate_sectors' => $row['focused_real_estate_sectors'] ?? null,
|
||||
'rera_complied_property' => $row['rera_compiled_propertyyesno'] ?? null,
|
||||
'return_on_investment' => $row['return_on_investment'] ?? null,
|
||||
'return_on_investment' => $row['return_on_investment'] ?? null,
|
||||
'valuation_per_sector' => $row['valuation_per_sector'] ?? null,
|
||||
'focused_funds' => $row['focused_funds'] ?? null,
|
||||
'trading_strategy' => $row['trading_strategy'] ?? null,
|
||||
|
||||
@@ -101,7 +101,7 @@ class FundImport implements ToCollection, WithHeadingRow
|
||||
'annualized_volatility' => $row['annualized_volatility'],
|
||||
'max_dropdown' => $row['max_drawdown'],
|
||||
'isin' => $row['isin'],
|
||||
'inception_date' => $row['inception_date'],
|
||||
'inception_date' => getConvertedDate($row['inception_date']),
|
||||
'fund_aum' => $row['fund_aum'],
|
||||
'expense_ratio' => $row['expense_ratio'],
|
||||
'nav_per_unit' => $row['nav_per_unit_usd'],
|
||||
@@ -109,7 +109,7 @@ class FundImport implements ToCollection, WithHeadingRow
|
||||
'ytd' => $row['ytd'],
|
||||
'year1_return' => $row['1_year_return'],
|
||||
'year3_return' => $row['3_year_return'],
|
||||
'data_as_on' => $row['data_as_on'] ?? null,
|
||||
// 'data_as_on' => getConvertedDate($row['data_as_on']) ?? null,
|
||||
]);
|
||||
if ($returns) {
|
||||
foreach ($returns as $key => $value) {
|
||||
|
||||
@@ -82,8 +82,10 @@ class RealEstateImport implements ToCollection, WithHeadingRow
|
||||
'built_up_area' => $row['built_up_area'] ?? null,
|
||||
'carpet_area' => $row['carpet_area'] ?? null,
|
||||
'construction_status' => $row['construction_status'] ?? null,
|
||||
'launch_date' => $row['launch_date'] ?? null,
|
||||
'completed_in' => $row['completed_in'] ?? null,
|
||||
// 'launch_date' => getConvertedDate($row['launch_date']) ?? null,
|
||||
// 'completed_in' => getConvertedDate($row['completed_in']) ?? null,
|
||||
'launch_date' => $row['launch_date'] ? getConvertedDate($row['launch_date']) : null,
|
||||
'completed_in' => $row['completed_in'] ? getConvertedDate($row['completed_in']) : null,
|
||||
'total_units' => $row['total_units'] ?? null,
|
||||
'unit_type' => $row['unit_type'] ?? null,
|
||||
'no_of_restrooms' => $row['no_of_restrooms'] ?? null,
|
||||
|
||||
@@ -25,7 +25,8 @@ class AlternativeInvestmentFund extends Model
|
||||
public function getTargetIrrAttribute($value)
|
||||
{
|
||||
// dd($);
|
||||
return $value == null ? '--' : $value.' %';
|
||||
// return $value == null ? '--' : $value.' %';
|
||||
return $value;
|
||||
}
|
||||
|
||||
public function getTenureFromFinalDateAttribute($value)
|
||||
|
||||
@@ -266,7 +266,8 @@ function getAllAdminNotifications()
|
||||
// $arr = [];
|
||||
// return $arr;
|
||||
$user = User::find(auth()->user()->id);
|
||||
return $user->unreadNotifications;
|
||||
// return $user->unreadNotifications;
|
||||
return $user->notifications;
|
||||
}
|
||||
|
||||
function getUserProfile()
|
||||
|
||||
@@ -4671,7 +4671,9 @@ h3.primary-no-data {
|
||||
.company-img img {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
span.color-red {
|
||||
color: red;
|
||||
}
|
||||
/*======responsive=====*/
|
||||
|
||||
@media (max-width: 2560px) {
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
<td>{{$data->seller->name}}</td>
|
||||
<td>{{$data->seller->email}}</td>
|
||||
<td>{{$data->seller->contact_number}}</td>
|
||||
<td>{{$data->latest_valuation_date}}</td>
|
||||
<td>{{$data->created_at->format('d/m/Y H:i:s')}}</td>
|
||||
{{--@if($approvedTable)
|
||||
<td>
|
||||
|
||||
@@ -73,6 +73,7 @@
|
||||
<th class="min-w-50px w-125px align-top">Seller Name</th>
|
||||
<th class="min-w-50px w-100px align-top ">Email</th>
|
||||
<th class="min-w-50px w-100px align-top">Contact</th>
|
||||
<th class="min-w-50px w-200px align-top">Latest Valuation Date</th>
|
||||
<th class="min-w-50px w-100px align-top">Date</th>
|
||||
<th class="text-center min-w-100px align-top">Actions</th>
|
||||
</tr>
|
||||
@@ -135,6 +136,7 @@
|
||||
<th class="min-w-50px w-125px align-top">Seller Name</th>
|
||||
<th class="min-w-50px w-100px align-top ">Email</th>
|
||||
<th class="min-w-50px w-100px align-top">Contact</th>
|
||||
<th class="min-w-50px w-200px align-top">Latest Valuation Date</th>
|
||||
<th class="min-w-50px w-100px align-top">Date</th>
|
||||
<th class="text-center min-w-100px align-top">Actions</th>
|
||||
</tr>
|
||||
@@ -196,6 +198,7 @@
|
||||
<th class="min-w-50px w-125px align-top">Seller Name</th>
|
||||
<th class="min-w-50px w-100px align-top ">Email</th>
|
||||
<th class="min-w-50px w-100px align-top">Contact</th>
|
||||
<th class="min-w-50px w-200px align-top">Latest Valuation Date</th>
|
||||
<th class="min-w-50px w-100px align-top">Date</th>
|
||||
<th class="text-center min-w-100px align-top">Actions</th>
|
||||
</tr>
|
||||
|
||||
@@ -112,8 +112,8 @@
|
||||
<!--begin::Svg Icon | path: icons/duotune/communication/com012.svg-->
|
||||
<!-- <i class="fa-regular fa-bell" style='width:25px;height:25px'></i> -->
|
||||
<div class="symbol symbol-50px">
|
||||
<i class="fa-regular fa-bell" title="{{Auth::user()->unreadNotifications()->count()}}" style='width:25px;height:25px'></i>
|
||||
<span class="symbol-badge badge badge-sm badge-circle badge-white badge-outline bg-danger start-100">{{Auth::user()->unreadNotifications()->count()}}</span>
|
||||
<i class="fa-regular fa-bell" title="{{Auth::user()->notifications()->count()}}" style='width:25px;height:25px'></i>
|
||||
<span class="symbol-badge badge badge-sm badge-circle badge-white badge-outline bg-danger start-100">{{Auth::user()->notifications()->count()}}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!--end::Menu wrapper-->
|
||||
|
||||
@@ -1,18 +1,27 @@
|
||||
<div class="d-flex align-items-start">
|
||||
<div class="symbol symbol-35px me-4">
|
||||
<span class="symbol-label bg-light-warning">
|
||||
<span class="svg-icon svg-icon-2 svg-icon-warning">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.3" d="M20 15H4C2.9 15 2 14.1 2 13V7C2 6.4 2.4 6 3 6H21C21.6 6 22 6.4 22 7V13C22 14.1 21.1 15 20 15ZM13 12H11C10.5 12 10 12.4 10 13V16C10 16.5 10.4 17 11 17H13C13.6 17 14 16.6 14 16V13C14 12.4 13.6 12 13 12Z" fill="currentColor" />
|
||||
<path d="M14 6V5H10V6H8V5C8 3.9 8.9 3 10 3H14C15.1 3 16 3.9 16 5V6H14ZM20 15H14V16C14 16.6 13.5 17 13 17H11C10.5 17 10 16.6 10 16V15H4C3.6 15 3.3 14.9 3 14.7V18C3 19.1 3.9 20 5 20H19C20.1 20 21 19.1 21 18V14.7C20.7 14.9 20.4 15 20 15Z" fill="currentColor" />
|
||||
</svg>
|
||||
{{-- @dd($data) --}}
|
||||
<a class="notify_id" data-notify-id="{{ $data->id }}">
|
||||
<div class="d-flex align-items-start mb-2" style="color:{{ $data->read_at ? '#808080' : 'black' }}">
|
||||
<div class="symbol symbol-35px me-4">
|
||||
<span class="symbol-label {{$data->read_at ? 'bg-light-warning':''}}" style="background-color:{{$data->read_at ? '':'#c18948'}}">
|
||||
<span class="svg-icon svg-icon-2 svg-icon-warning">
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.3"
|
||||
d="M20 15H4C2.9 15 2 14.1 2 13V7C2 6.4 2.4 6 3 6H21C21.6 6 22 6.4 22 7V13C22 14.1 21.1 15 20 15ZM13 12H11C10.5 12 10 12.4 10 13V16C10 16.5 10.4 17 11 17H13C13.6 17 14 16.6 14 16V13C14 12.4 13.6 12 13 12Z"
|
||||
fill="currentColor" />
|
||||
<path
|
||||
d="M14 6V5H10V6H8V5C8 3.9 8.9 3 10 3H14C15.1 3 16 3.9 16 5V6H14ZM20 15H14V16C14 16.6 13.5 17 13 17H11C10.5 17 10 16.6 10 16V15H4C3.6 15 3.3 14.9 3 14.7V18C3 19.1 3.9 20 5 20H19C20.1 20 21 19.1 21 18V14.7C20.7 14.9 20.4 15 20 15Z"
|
||||
fill="currentColor" />
|
||||
</svg>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="mb-0 me-2">
|
||||
<div class="fs-7 messages" style="font-weight:{{ $data->read_at ? '300' : '600' }}">
|
||||
{{ $data->data['message'] }}</div>
|
||||
</div>
|
||||
<span class="badge badge-light fs-8 me-2">{{ $data->created_at->diffForHumans() }}</span>
|
||||
<!--<span class="badge badge-light fs-8 me-2">{{ $data->id }}</span>-->
|
||||
</div>
|
||||
<div class="mb-0 me-2">
|
||||
<div class="text-gray-400 fs-7">{{$data->data['message']}}</div>
|
||||
</div>
|
||||
<span class="badge badge-light fs-8 me-2">{{$data->created_at->diffForHumans()}}</span>
|
||||
<!--<span class="badge badge-light fs-8 me-2">{{$data->id}}</span>-->
|
||||
<a class="badge badge-light fs-8 notify_id" data-notify-id="{{$data->id}}"><i class="fa fa-trash" aria-hidden="true"></i></a>
|
||||
</div>
|
||||
</a>
|
||||
{{-- <a class="badge badge-light fs-8 notify_id" data-notify-id="{{$data->id}}"><i class="fa fa-trash" aria-hidden="true"></i></a> --}}
|
||||
|
||||
@@ -295,7 +295,7 @@
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Return on investment</p>
|
||||
<span>{{ $longOnlyEquityFund->return_on_investment ?? '-' }}</span>
|
||||
<span>{{ $longOnlyEquityFund->return_on_investment_irr_dpi_rvpi_tvpi ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -315,6 +315,11 @@
|
||||
<p>Valuation per sector</p>
|
||||
<span>{{ $longOnlyEquityFund->valuation_per_sector ?? '-' }}</span>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<p>Valuation per security (NAV)</p>
|
||||
<span>{{ $productData->valuation_per_security_nav ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -333,6 +338,10 @@
|
||||
<p>Trading strategy</p>
|
||||
<span>{{ $longOnlyEquityFund->trading_strategy ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Trading Strategy Used</p>
|
||||
<span>{{ $productData->trading_strategy_used ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<div class="banner-text-contain">
|
||||
<h2>PIPE Funds</h2>
|
||||
<h4>Private Investment in Public Equity</h4>
|
||||
<button>Category II AIF</button>
|
||||
<button>Category III AIF</button>
|
||||
<h4>PIPE Funds - Your Key to Exclusive Public Equity Deals</h4>
|
||||
<p>PIPE funds are privately sourced funds from investors, usually <br> reserved for public
|
||||
equity investments – which refers to the practice<br> of private investors means buying
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
<!--</div>-->
|
||||
<div class="table-invest">
|
||||
<div class="container">
|
||||
@if ($productData && $productData->product_images != null)
|
||||
@if ($productData && $productData->product_images->toArray() != null)
|
||||
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel">
|
||||
<div class="carousel-indicators">
|
||||
@foreach ($productData->product_images as $key => $image)
|
||||
|
||||
@@ -192,67 +192,6 @@
|
||||
<x-indian-industrial-real-estate-product :iireData="$openIIRE" id="open_investments" :type="$type='Primary Offerings'" />
|
||||
<x-indian-industrial-real-estate-product :iireData="$fullyFundedIIRE" id="resale" :type="$type='Secondary Offerings'" />
|
||||
{{-- <x-indian-industrial-real-estate-product :iireData="$fullyFundedIIRE" id="fullyFunded" :type="$type='Fully Funded Investments'" /> --}}
|
||||
<!--<div class="investment">-->
|
||||
<!-- <div class="container">-->
|
||||
<!-- <h2>Open Investments</h2>-->
|
||||
<!-- <div class="dummy-card">-->
|
||||
<!-- <h4>As of now, we do not have any investment opportunities available in this category. We will keep you-->
|
||||
<!-- informed about new opportunities through both email updates and mobile app notifications. Stay tuned-->
|
||||
<!-- for updates.</h4>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!--</div>-->
|
||||
<!--@include('Frontend.Pages.resources.learn-more')-->
|
||||
{{-- <div class="container pt-5">
|
||||
<h2 class="text-center mb-4">Learn More</h2>
|
||||
<div class="accordion learn-accordion">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header m-0" id="headingOne">
|
||||
<button class="accordion-button" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
||||
What is included in Industrial Real Estate?
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
|
||||
data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
Industrial Real Estate includes warehouses, distribution
|
||||
centers, manufacturing facilities, and other specialized
|
||||
industrial spaces. These properties are essential for
|
||||
logistics, production, and supply chain operations,
|
||||
making them critical assets in the global economy. </div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header m-0" id="headingTwo">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
||||
Why Invest in Industrial Real Estate?
|
||||
</button>
|
||||
</h2>
|
||||
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
|
||||
data-bs-parent="#accordionExample">
|
||||
<div class="accordion-body">
|
||||
The industrial real estate market is influenced by global
|
||||
economic trends, technological advancements, and shifts
|
||||
in consumer behavior. Recent trends include the rise of e
|
||||
-commerce, demand for efficient logistics, and increased
|
||||
automation in warehousing. </div>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="accordion-item">-->
|
||||
<!-- <h2 class="accordion-header m-0" id="headingThree">-->
|
||||
<!-- <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">-->
|
||||
<!-- Accordion Item #3-->
|
||||
<!-- </button>-->
|
||||
<!-- </h2>-->
|
||||
<!-- <div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">-->
|
||||
<!-- <div class="accordion-body">-->
|
||||
<!-- <strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
<!--</div>-->
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@@ -174,7 +174,7 @@
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<p>Launch Date</p>
|
||||
<span{{ $realEstate->launch_date ?? '-' }}></span>
|
||||
<span>{{ $realEstate->launch_date ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tables row">
|
||||
@@ -186,9 +186,10 @@
|
||||
<p>Built Up Area</p>
|
||||
<span>{{ $realEstate->built_up_area ?? '-' }}</span>
|
||||
</div>
|
||||
{{-- @dd($realEstate->carpet_area); --}}
|
||||
<div class="col-md-4">
|
||||
<p>Carpet area</p>
|
||||
<span{{ $realEstate->carpet_area ?? '-' }}></span>
|
||||
<span>{{ $realEstate->carpet_area ?? '-' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -157,7 +157,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="banifit-tabs mt-4" id="open_investments">
|
||||
<div class="banifit-tabs mt-4">
|
||||
<div class="container">
|
||||
<nav>
|
||||
<div class="nav nav-tabs justify-content-center" id="nav-tab" role="tablist">
|
||||
@@ -198,6 +198,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<x-learn-more :learnMore="$learnMore" />
|
||||
<div id="open_investments"></div>
|
||||
<x-indian-residential-real-estate-product :irreData="$openIRRE" id="open_investments" :type="$type = 'Primary Offerings'" />
|
||||
<x-indian-residential-real-estate-product :irreData="$fullyFundedIRRE" id="resale" :type="$type = 'Secondary Offerings'" />
|
||||
{{-- <x-indian-residential-real-estate-product :irreData="$fullyFundedIRRE" id="fullyFunded" :type="$type='Fully Funded Investments'" /> --}}
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-7 crds-ctn">
|
||||
<img src="{{ asset('/public/assets/media/FrontendImages/menu-logo.png') }}">
|
||||
<h4>Want your product to be in spotlight for the aspiring buyers?</h4>
|
||||
{{-- <h4>Want your product to be in spotlight for the aspiring buyers?</h4> --}}
|
||||
</div>
|
||||
<div class="col-md-5 crds-ctns">
|
||||
<div class="crds-inner">
|
||||
|
||||
@@ -1,106 +1,123 @@
|
||||
@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>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</label>
|
||||
<label>Tenure from Final Close (In Years)</label>
|
||||
<input type="text" name="tenure_from_final_close"
|
||||
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>"
|
||||
);
|
||||
}
|
||||
})
|
||||
|
||||
@@ -211,7 +233,7 @@
|
||||
fund_category: "required",
|
||||
fund_structure: "required",
|
||||
type_of_fund: "required",
|
||||
fund_strategy: "required",
|
||||
// fund_strategy: "required",
|
||||
// type_of_fund: "required",
|
||||
// fund_strategy: "required",
|
||||
// fund_manager_name: "required",
|
||||
@@ -233,7 +255,7 @@
|
||||
fund_category: 'Please select fund category',
|
||||
fund_structure: 'Please select fund structure',
|
||||
type_of_fund: 'Please select type of fund',
|
||||
fund_strategy: 'Please enter fund strategy',
|
||||
// fund_strategy: 'Please enter fund strategy',
|
||||
// type_of_fund: 'Please select type of fund',
|
||||
// fund_strategy: 'Please enter fund strategy',
|
||||
// fund_manager_name: 'Please enter fund manager name',
|
||||
|
||||
@@ -16,21 +16,21 @@
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="banner right-ivestment">
|
||||
{{-- <div class="banner right-ivestment">
|
||||
<div class="container row">
|
||||
<div class="content" data-aos="fade-right">
|
||||
<h1 class="invest-header si-hd text-center">Buy your Investment's today!</h1>
|
||||
{{-- <ul class="si-hd_p p-0 d-flex justify-content-between">
|
||||
<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> --}}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6 bgn-image" data-aos="fade-left">
|
||||
{{-- <img src="/public/assets/media/FrontendImages/r-invest.png"> --}}
|
||||
<img src="/public/assets/media/FrontendImages/r-invest.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="form">
|
||||
<div class="container">
|
||||
@if($table == 'alternative-investment-funds')
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="banner right-ivestment">
|
||||
{{-- <div class="banner right-ivestment">
|
||||
<div class="container row">
|
||||
<div class="content" data-aos="fade-right">
|
||||
<h1 class="invest-header si-hd text-center">Edit your investment's today!</h1>
|
||||
@@ -27,10 +27,10 @@
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6 bgn-image" data-aos="fade-left">
|
||||
{{-- <img src="/public/assets/media/FrontendImages/r-invest.png"> --}}
|
||||
<img src="/public/assets/media/FrontendImages/r-invest.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
<div class="form">
|
||||
<div class="container">
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
@extends('Frontend.layouts.master')
|
||||
@section('content')
|
||||
<div class="market-list">
|
||||
<div class="banner right-ivestment">
|
||||
{{-- <div class="banner right-ivestment">
|
||||
<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">
|
||||
<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> --}}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6 bgn-image" data-aos="fade-left">
|
||||
{{-- <img src="/public/assets/media/FrontendImages/r-invest.png"> --}}
|
||||
<img src="/public/assets/media/FrontendImages/r-invest.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> --}}
|
||||
<div class="form">
|
||||
<div class="container">
|
||||
<form id="marketplace-seller-form" method="POST">
|
||||
|
||||
@@ -108,7 +108,7 @@
|
||||
<span>{{ $ventureCapitalFund->annualized_volatility ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4 mb-2">
|
||||
<p>Max Dropdown</p>
|
||||
<p>Max Drawdown</p>
|
||||
<span>{{ $ventureCapitalFund->max_dropdown ?? '-' }}</span>
|
||||
</div>
|
||||
<div class="col-md-4 mb-2">
|
||||
|
||||
@@ -11,7 +11,6 @@
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
|
||||
</div>
|
||||
<div class="blur-md">
|
||||
<!--<img src="{{ asset('assets/media/FrontendImages/world.png') }}">-->
|
||||
@if($data->real_estate->geographic_focus == 'India')
|
||||
<img src="{{ asset('public/assets/media/FrontendImages/map.svg') }}">
|
||||
@else
|
||||
@@ -23,18 +22,6 @@
|
||||
<div class="middle-sec">
|
||||
<p class="cate">Category: {{$data->categorys->category_name}} </p>
|
||||
</div>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="">Type : {{$data->real_estate->project_type}}</p> <span class="mx-2">|</span>
|
||||
<p class=""></p>
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Total Price: {{$data->real_estate->total_price}}</h4>
|
||||
<p>{{Str::limit($data->description,250)}}</p>
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
<img src="{{ imagePath('public/assets/media/FrontendImages/menu-logo.png') }}">
|
||||
</div>
|
||||
<div class="blur-md">
|
||||
<!--<img src="{{ asset('assets/media/FrontendImages/world.png') }}">-->
|
||||
@if ($data->real_estate->geographic_focus == 'India')
|
||||
<img src="{{ asset('public/assets/media/FrontendImages/map.svg') }}">
|
||||
@else
|
||||
@@ -25,18 +24,6 @@
|
||||
<div class="middle-sec">
|
||||
<p class="cate">Category: {{ $data->categorys->category_name }}</p>
|
||||
</div>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="w-50">Type : {{$data->real_estate->project_type}}</p> <span class="mx-2">|</span>
|
||||
<p class="w-50">Price per sqft : {{$data->real_estate->price_per_sq_ft}}</p>
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Total Price: {{ $data->real_estate->total_price }}</h4>
|
||||
<p>{{ $data->real_estate->remarks }}</p>
|
||||
|
||||
@@ -11,7 +11,6 @@
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
|
||||
</div>
|
||||
<div class="blur-md">
|
||||
<!--<img src="{{ asset('assets/media/FrontendImages/world.png') }}">-->
|
||||
@if($data->real_estate->geographic_focus == 'India')
|
||||
<img src="{{ asset('public/assets/media/FrontendImages/map.svg') }}">
|
||||
@else
|
||||
@@ -23,18 +22,6 @@
|
||||
<div class="middle-sec">
|
||||
<p class="cate">Category: {{$data->categorys->category_name}}</p>
|
||||
</div>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="">Type : {{$data->real_estate->project_type}}</p> <span class="mx-2">|</span>
|
||||
<p class=""></p>
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Total Price: {{$data->real_estate->total_price}}</h4>
|
||||
<p>{{$data->real_estate->property_location}}</p>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
|
||||
</div>
|
||||
<div class="blur-md">
|
||||
<!--<img src="{{ asset('assets/media/FrontendImages/map.svg') }}">-->
|
||||
@if($data->realEstate->geographic_focus == 'India')
|
||||
<img src="{{ asset('public/assets/media/FrontendImages/map.svg') }}">
|
||||
@else
|
||||
@@ -20,18 +19,6 @@
|
||||
<p>{{$data->realEstate->property_name}}</p>
|
||||
</div>
|
||||
<p class="cate">Category: {{$data->categorys->category_name}}</p>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="w-50">Type: {{$data->realEstate->project_type}}</p>
|
||||
<p class=""></p>
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Total Price: {{$data->realEstate->total_price}}</h4>
|
||||
<p>{{Str::limit($data->description,250)}}</p>
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
@if(count($iireAllData))
|
||||
<div class="parimay-card mt-4 mb-4">
|
||||
@foreach($iireAllData as $ffdaData)
|
||||
<!--@foreach($ffdaData as $data)-->
|
||||
<div class="assets-card aos-init aos-animate" data-aos="fade-up">
|
||||
<a href="{{ auth()->guard('users')->check() == true ? route('ire.product',$ffdaData->realEstate->slug) : route('login') }}" data-route="{{route('ire.product',$ffdaData->realEstate->slug)}}" class="redirect_to_page">
|
||||
<div class="card-logo bg-white">
|
||||
@@ -21,25 +20,12 @@
|
||||
<p>{{$ffdaData->realEstate->property_name}}</p>
|
||||
</div>
|
||||
<p class="cate">Category: {{$ffdaData->categorys->category_name}}</p>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="">Type : {{$ffdaData->realEstate->project_type}}</p>
|
||||
<!--<p class="">Tenure From Final Date: {{$ffdaData->realEstate->tenure_from_final_date}}</p>-->
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Minimum Investment: {{$ffdaData->realEstate->total_price}}</h4>
|
||||
<p>{{Str::limit($ffdaData->realEstate->facilities_features,250)}}</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<!--@endforeach-->
|
||||
@endforeach
|
||||
</div>
|
||||
@else
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/menu-logo.png')}}">
|
||||
</div>
|
||||
<div class="blur-md">
|
||||
<!--<img src="{{ asset('assets/media/FrontendImages/map.svg') }}">-->
|
||||
@if($ffdaData->realEstate->geographic_focus == 'India')
|
||||
<img src="{{ asset('public/assets/media/FrontendImages/map.svg') }}">
|
||||
@else
|
||||
@@ -20,18 +19,6 @@
|
||||
<p>{{$ffdaData->realEstate->property_name}}</p>
|
||||
</div>
|
||||
<p class="cate">Category: {{$ffdaData->categorys->category_name}}</p>
|
||||
{{-- <div class="middle-sec">
|
||||
<div class="dropdown-tooltip">
|
||||
<div class="dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="{{imagePath('public/assets/media/FrontendImages/tooptips-icon.png')}}">
|
||||
</div>
|
||||
<div class="dropdown-menu">
|
||||
<p>Close Date: Approx. Sep 2030</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="">Type : {{$ffdaData->realEstate->project_type}}</p>
|
||||
<p></p>
|
||||
</div> --}}
|
||||
<div class="dics">
|
||||
<h4>Minimum Investment: {{$ffdaData->realEstate->price_range}}</h4>
|
||||
<p>{{Str::limit($ffdaData->description,250)}}</p>
|
||||
|
||||
Reference in New Issue
Block a user