Index.php 6.9 KB
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;

class Index extends Controller
{
    //

    public function __construct()
    {
        View::share('_langs',self::lang());

        View::share('the_lang',THE_LANG);

        // 设置语言
        \Illuminate\Support\Facades\App::setLocale(THE_LANG);


    }

    /**
     * 首页
     * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
     * @author:dc
     * @time 2022/11/16 9:06
     */
    public function home()
    {
        $this->seo('home');
        return view('home');
    }


    public function about()
    {
        $this->seo('about');
        return view('about');
    }

    public function blog()
    {
        $this->seo('blog');
        return view('blog');
    }

    public function kolSolution()
    {
        $this->seo('kolSolution');
        return view('kolSolution');
    }

    public function fqa()
    {
        $this->seo('fqa');
        return view('fqa');
    }

    public function shop()
    {
        $this->seo('shop');
        return view('shop');
    }

    public function shopApp()
    {
        $this->seo('shopApp');
        return view('shopk_app');
    }

    private function seo($page='home'){
        $seo    =   [
            'home'  =>  [
                'type' =>  '',
                'app_name' =>  '',
                'title' =>  '',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'about'  =>  [
                'type' =>  '',
                'app_name' =>  '',
                'title' =>  '',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'blog'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'ShopK - Trusted Online Reselling APP',
                'keywords' =>  'Shopping, APP, Shopk, Online Reseller App',
                'description' =>  'ShopK gives users access to a virtual shop, millions of products from trusted suppliers, payment and shipping facilities thereby removing the hassles of'
            ],
            'kolSolution'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'Kol Solution',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'fqa'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'FAQs',
                'keywords' =>  '',
                'description' =>  'What do I need to do to sign up? Simply fill out the application form to get started. We’ll contact you by WhatsApp. Does it cost me anything to become a ShopK affiliate? The program is free to join, there are no charges.'
            ],
            'shop'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'Shop',
                'keywords' =>  '',
                'description' =>  ''
            ],
            'shopApp'  =>  [
                'type' =>  'page',
                'app_name' =>  'ShopK',
                'title' =>  'ShopK APP Download &#8211; Trusted Online Reselling APP',
                'keywords' =>  '',
                'description' =>  'ShopK APP Download &#8211; Trusted Online Reselling APP'
            ],
        ];
        View::share('seo',$seo[$page]);
    }


    /**
     * lang
     * @return string[]
     * @author:dc
     * @time 2022/11/16 14:35
     */
    public static function lang()
    {
        return [
            'en' => 'English',
            'fr' => 'French',
            'de' => 'German',
            'pt' => 'Portuguese',
            'es' => 'Spanish',
            'ru' => 'Russian',
            'ja' => 'Japanese',
            'ko' => 'Korean',
            'ar' => 'Arabic',
            'ga' => 'Irish',
            'el' => 'Greek',
            'tr' => 'Turkish',
            'it' => 'Italian',
            'da' => 'Danish',
            'ro' => 'Romanian',
            'id' => 'Indonesian',
            'cs' => 'Czech',
            'af' => 'Afrikaans',
            'sv' => 'Swedish',
            'pl' => 'Polish',
            'eu' => 'Basque',
            'ca' => 'Catalan',
            'eo' => 'Esperanto',
            'hi' => 'Hindi',
            'lo' => 'Lao',
            'sq' => 'Albanian',
            'am' => 'Amharic',
            'hy' => 'Armenian',
            'az' => 'Azerbaijani',
            'be' => 'Belarusian',
            'bn' => 'Bengali',
            'bs' => 'Bosnian',
            'bg' => 'Bulgarian',
            'ceb' => 'Cebuano',
            'ny' => 'Chichewa',
            'co' => 'Corsican',
            'hr' => 'Croatian',
            'nl' => 'Dutch',
            'et' => 'Estonian',
            'tl' => 'Filipino',
            'fi' => 'Finnish',
            'fy' => 'Frisian',
            'gl' => 'Galician',
            'ka' => 'Georgian',
            'gu' => 'Gujarati',
            'ht' => 'Haitian',
            'ha' => 'Hausa',
            'haw' => 'Hawaiian',
            'iw' => 'Hebrew',
            'hmn' => 'Hmong',
            'hu' => 'Hungarian',
            'is' => 'Icelandic',
            'ig' => 'Igbo',
            'jw' => 'Javanese',
            'kn' => 'Kannada',
            'kk' => 'Kazakh',
            'km' => 'Khmer',
            'ku' => 'Kurdish',
            'ky' => 'Kyrgyz',
            'la' => 'Latin',
            'lv' => 'Latvian',
            'lt' => 'Lithuanian',
            'lb' => 'Luxembou..',
            'mk' => 'Macedonian',
            'mg' => 'Malagasy',
            'ms' => 'Malay',
            'ml' => 'Malayalam',
            'mt' => 'Maltese',
            'mi' => 'Maori',
            'mr' => 'Marathi',
            'mn' => 'Mongolian',
            'my' => 'Burmese',
            'ne' => 'Nepali',
            'no' => 'Norwegian',
            'ps' => 'Pashto',
            'fa' => 'Persian',
            'pa' => 'Punjabi',
            'sr' => 'Serbian',
            'st' => 'Sesotho',
            'si' => 'Sinhala',
            'sk' => 'Slovak',
            'sl' => 'Slovenian',
            'so' => 'Somali',
            'sm' => 'Samoan',
            'gd' => 'Scots Gaelic',
            'sn' => 'Shona',
            'sd' => 'Sindhi',
            'su' => 'Sundanese',
            'sw' => 'Swahili',
            'tg' => 'Tajik',
            'ta' => 'Tamil',
            'te' => 'Telugu',
            'th' => 'Thai',
            'uk' => 'Ukrainian',
            'ur' => 'Urdu',
            'uz' => 'Uzbek',
            'vi' => 'Vietnamese',
            'cy' => 'Welsh',
            'xh' => 'Xhosa',
            'yi' => 'Yiddish',
            'yo' => 'Yoruba',
            'zu' => 'Zulu',
            'rw' => 'Kinyarwanda',
            'tt' => 'Tatar',
            'or' => 'Oriya',
            'tk' => 'Turkmen',
            'ug' => 'Uyghur'
        ];
    }

}