<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ $GLOBALS['markup_theme_options'] = markup_get_options_value(); global $markup_theme_options; $enable_slider = absint($markup_theme_options['markup_enable_slider']); $enable_box = $markup_theme_options['markup_enable_promo']; ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php //wp_body_open hook from WordPress 5.2 if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); }else { do_action( 'wp_body_open' ); } ?> <div id="page" class="site "> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'markup' ); ?></a> <?php /** * Hook - markup_action_header. * * @hooked markup_add_main_header - 10 */ do_action( 'markup_action_header' ); ?> <?php if ($enable_slider == 1 && (is_home() || is_front_page())) { ?> <section class="slider-wrapper"> <?php /* * Slider Section Hook */ do_action('markup_action_slider'); ?> </section> <?php } ?> <?php if ($enable_box == 1 && (is_home() || is_front_page() ) ) { ?> <section class="promo-slider-wrapper"> <?php /* * Boxes Section Hook */ do_action('markup_action_boxes'); ?> </section> <?php } ?>
Uncategorized

Indian-Origin Designer Accused Of Fake Designer Clothing Jailed In UK

[ad_1]

Indian-Origin Designer Accused Of Fake Designer Clothing Jailed In UK

Mr Patel and his gang imported and sold counterfeit clothes.

London:

An Indian-origin mastermind of a fake designer clothing scam, accused of trying to steal around 97 million pounds through Value Added Tax (VAT) repayment claims on false exports of textiles and mobile phones with the help of a criminal gang, was on Thursday sentenced to 20 years imprisonment for tax fraud in the UK.

Sock manufacturer Arif Patel, aged 55, was found guilty last month in what Britain’s tax department described as one of the country’s largest ever “carousel” tax frauds.

Mr Patel was found guilty of false accounting, conspiracy to cheat the public revenue, the onward sale of counterfeit clothing and money laundering following a 14-week trial at Chester Crown Court.

“Arif Patel lived a lavish lifestyle at the expense of the law-abiding majority. Tax crime is not victimless and fraudsters like this pair steal the money that funds theNational Health Service and other vital public services we all rely on,” said Richard Las, Director of the Fraud Investigation Service at His Majesty’s Revenue and Customs (HMRC), which was part of a joint investigation with the local Lancashire police.

Mr Patel and his gang imported and sold counterfeit clothes that would have been worth at least 50 million pounds had they been genuine and the proceeds were then used to buy property across Preston in northern England and London through offshore bank accounts.

Another accused, 58-year-old Mohamed Jaffar Ali from Dubai, who was also found guilty of conspiracy to cheat HMRC and money laundering has also been sentenced on Friday to 11 years imprisonment.

“Arif Patel and Mohamed Jaffar Ali were at the heart of one of the biggest carousel tax frauds this country has ever seen and the severity of their crimes has been recognised by today’s sentencing,” said Eamonn O’Neill, Assistant Director of Fraud Investigation Service at HMRC.

The UK tax department said in total, 26 members of the criminal empire have now been convicted and sentenced following six trials between 2011 and 2023, leading to jail terms totalling 147 years and seven months. More than 78 million pounds of the gang’s assets have been restrained and the process to recover these proceeds of crime is in progress.

“Patel was sentenced in his absence, having remained in Dubai throughout the trial,” said Andrew Fox, Senior Prosecutor for the Crown Prosecution Service (CPS).

“The CPS will now pursue confiscation proceedings against the defendants, to prevent them enjoying the benefits of their criminal enterprise,” he said.

The HMRC said that Mr Patel’s criminal enterprise relied on “dozens of lieutenants” around the UK, including professional enablers. This involved two chartered accountants from a Preston-based practice: Anil Hindocha aged 69 from Preston and Yogesh Patel aged 66 from Aylesbury.

Earlier, Mr Hindocha was jailed for 12 years and 10 months in 2014 after being found guilty of false accounting, conspiracy to cheat the tax department and money laundering. Yogesh Patel was jailed for five years and seven months for the same offences. 

(Except for the headline, this story has not been edited by NDTV staff and is published from a syndicated feed.)

[ad_2]

Source link

<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ global $markup_theme_options; $copyright = wp_kses_post($markup_theme_options['markup-footer-copyright']); if ( is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3') || is_active_sidebar('footer-4') ) { $count = 0; for ( $i = 1; $i <= 4; $i++ ) { if ( is_active_sidebar( 'footer-' . $i ) ) { $count++; } } $footer_col= 4; if( $count == 4 ) { $footer_col= 4; } elseif( $count == 3) { $footer_col= 3; } elseif( $count == 2) { $footer_col= 2; } elseif( $count == 1) { $footer_col= 1; } } ?> <div class="footer-full-width"> <?php if ( is_active_sidebar( 'full-width-footer' ) ){ dynamic_sidebar( 'full-width-footer' ); } ?> </div> <div class="footer-wrap"> <div class="container"> <div class="row"> <?php for ( $i = 1; $i <= 4 ; $i++ ){ if ( is_active_sidebar( 'footer-' . $i ) ) { ?> <div class="footer-col-<?php echo absint( $footer_col ); ?>"> <div class="footer-top-box wow fadeInUp"> <?php dynamic_sidebar( 'footer-' . $i ); ?> </div> </div> <?php } } ?> </div> </div> <footer class="site-footer"> <div class="container"> <div class="row"> <div class="col-sm-6"> <div class="copyright"> <?php echo wp_kses_post( $copyright ); ?> <span class="sep"> | </span> <?php /* translators: 1: Theme name, 2: Theme author. */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'markup' ), 'Markup', '<a href="https://www.templatesell.com/">Template Sell</a>' ); ?> </div> </div> <div class="col-sm-6"> <div class="footer-menu"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_id' => 'footer-menu', 'menu_class' => 'footer-menu', ) ); ?> </div> </div> </div> </div> </footer> <?php do_action('markup_go_to_top_hook'); ?> </div> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>