Files
freeu-project/resources/views/Frontend/Pages/bonds/sovereign-bonds.blade.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

156 lines
5.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('Frontend.layouts.master')
@include('Frontend.menu-after-lg')
@section('content')
<!-- banner -->
<div class="banner">
<div class="container row">
<div class="col-md-6 content" data-aos="fade-right">
<h1>Sovereign Government Bonds</h1>
<h2>International Equities, also known as global stocks, refer to publicly traded companies that are based outside of an investors home country. These stocks represent ownership shares in companies that operate and generate revenue in companies other than the investors domestic market.</h2>
<a href="../freeU/handpicked-investment.php" class="yellow-btn">Get started with International Equities</a>
</div>
<div class="col-md-6 bgn-image" data-aos="fade-left">
<img src="assets/image/4401303.png">
</div>
</div>
</div>
<!-- banner -->
<!-- blue-bar3 -->
<div class="blue-bar">
<div class="container row">
<div class="col-md-3 bluebr" data-aos="fade-up">
<div class="row">
<div class="col-md-5 bluebr-circle">
<img src="assets/image/save-money@2x.png"/>
</div>
<div class="col-md-7 bluebr-txt">
<h2>Expected Return</h2>
<h3>~10-15% (in USD Terms)</h3>
</div>
</div>
</div>
<div class="col-md-3 bluebr" data-aos="fade-up">
<div class="row">
<div class="col-md-5 bluebr-circle">
<img src="assets/image/stopwatch@2x.png"/>
</div>
<div class="col-md-7 bluebr-txt">
<h2>Investment Horizon</h2>
<h3>3+ Years</h3>
</div>
</div>
</div>
<div class="col-md-3 bluebr" data-aos="fade-up">
<div class="row">
<div class="col-md-5 bluebr-circle">
<img src="assets/image/capital@2x.png"/>
</div>
<div class="col-md-7 bluebr-txt">
<h2>Minimum Investment</h2>
<h3>$100 (₹8,250)</h3>
</div>
</div>
</div>
</div>
</div>
<div class="benefits-pointer">
<div class="container">
<h2 data-aos="fade-down">Advantages</h2>
<div class="point">
<h3>Global Diversification: Investors can diversify their portfolios beyond domestic markets, providing exposures to various countries, economies, and industries. </h3>
</div>
<div class="point">
<h3>Currency Exposure: If the investors home currency weakens against the currency in which the mutual fund units are issued, the investor may receive an enhanced return.</h3>
</div>
<div class="point">
<h3>Sector and Industry Exposure: International stocks provide the opportunity to invest in specific sectors or industries that may be dominant or thriving in certain countries. For example, AI-related companies in the United States or automotive companies in Germany.</h3>
</div>
</div>
<div class="container">
<h2 data-aos="fade-down">Risks</h2>
<div class="point">
<h3>Company-Specific Risks: Poor financial performance, mismanagement or governance issues within a company can adversely affect its stock value. Unlike mutual funds, an investment in international stocks can have concentrated risk to the companys specific risks which may expose the investor to potentially significant drawdowns. </h3>
</div>
<div class="point">
<h3>Market Risk and High Volatility: International stocks may experience higher levels of volatility compared to domestic markets.</h3>
</div>
<div class="point">
<h3>Economic Risks: Each country has its own economic dynamics and risks. Factors such as GDP growth, inflation rates, interest rates, etc. can affect the performance of international stocks in those countries.</h3>
</div>
<div class="point">
<h3>Other Risks: Other key risks include (but not limited to) Liquidity risk, regulatory and legal risks, geopolitical risks, etc.</h3>
</div>
</div>
<div class="container">
<h2 data-aos="fade-down">Who can Invest?</h2>
<div class="point">
<h3>Both Resident Indians and Non-Resident Indians can invest in international equities. Investments made through Liberalized Remittance Scheme (LRS) route may be subject to a limit of $250,000 and Tax Deducted at Source (TCS).</h3>
</div>
</div>
</div>
<!-------end-faq-------->
<!-- investment-opportunites -->
<div class="opportunities offering">
<h2 data-aos="fade-down">FreeU Equities</h2>
<p data-aos="fade-down">Investing with us is easy, transparent,and seamless</p>
<div class="container row">
@forelse($bonds->data as $data)
<div class="col-md-4 card" data-aos="flip-up" >
<h3>{{$data->bonds->issuer}}</h3>
<div class="table">
<table>
<tbody>
<tr>
<td>Collateral Type</td>
<td class="clr">{{$data->bonds->collateral_type}}</td>
</tr>
<tr>
<td>Minimum Investment</td>
<td class="clr">{{$data->bonds->minimum_investment}}</td>
</tr>
</tbody>
</table>
</div>
<a href="{{route('bonds.product',$data->bonds->slug)}}" class="blue-btn">View Offerings</a>
</div>
@empty
@include('Frontend.coming-soon-card')
@endforelse
</div>
</div>
<!-- investment-opportunities -->
@include('Frontend.request_callback')
@include('Frontend.faqs')
@endsection