@extends('layouts.app') @section('content') @if( isset($_GET['lang']) && !empty($_GET['lang']) ) @php $lang = $_GET['lang']; $our_language = strpos($lang, 'az') !== false ? 'az' : (strpos($lang, 'ka') !== false ? 'ge' : (strpos($lang, 'am') !== false ? 'am' : (strpos($lang, 'ru') !== false ? 'ru' : '') )); $url = $_SERVER['WP_HOME'].'/'.$our_language.$_SERVER['REDIRECT_URL']; if( $url ) wp_safe_redirect($url, 301); @endphp @endif
@include('partials.atoms.image',[ 'src' => get_template_directory_uri().'/assets/images/404.svg', 'alt' => '404 Page not found', 'class' => '' ])
@endsection