HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/mobile/pages/home.blade.php
@extends('mobile.master')


@section('content')
    {{-- Rich snippet for search bar --}}

    <script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "WebSite",
  "url": "{{$shop->getShop()->default_domain}}",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "{{$shop->getShop()->default_domain}}/{{$shop->getPageService()->page('search')->route}}?q={search_term}",
    "query-input": "required name=search_term"
  },"aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "{{ round($kiyoh->get()->totalScore) }}",
    "bestRating": "10",
    "ratingCount": "{{$kiyoh->get()->totalReviews}}"
  }
}




    </script>

    {{-- End of rich snippet --}}

    <div class="content-container column full">

        {{-- Search block home --}}
        <div class="home-start-block content-block center">
            <h1>{{ Lang::choice('pages/home.panel.title', Shop::getLanguageService()->dialectCount()) }}</h1>

            @include('mobile.partials.searchBarMobile')

            <div class="tips-list">
                <h2>{{ Lang::get('pages/home.panel.tips.title') }}</h2>
                <ul>
                    <li>{{ Lang::get('pages/home.panel.tips.tip1') }}</li>
                    <li>{{ Lang::get('pages/home.panel.tips.tip2') }}</li>
                    <li>{{ Lang::get('pages/home.panel.tips.tip3') }}</li>
                </ul>

                <div class="btn-holder">

                    @include('partials.buttons.default',[
                        'route' => '/' . $shop->getPageService()->page('brands')->route,
                        'text' => Lang::get('pages/home.panel.button')
                    ])

                </div>
            </div>


            <a class="customer-login" href="/{{$shop->getPageService()->page('customer')->route}}">
                <div class="placeholder">
                    <span class="icon"></span>
                    @if(Auth::customer()->check())
                        <p>
                            <strong>{{ Lang::get('customer/header.salutation',['name' => Auth::customer()->get()->first_name]) }}!</strong>
                            @lang('mobile.homeLoggedInAccountText')
                        </p>
                    @else
                        <p>
                            <strong>@lang('emails/customer/verify.subject')</strong>
                            @lang('mobile.homeAccountText')
                        </p>
                    @endif
                </div>
            </a>


            @include('mobile.partials.homeKiyohReview')

            <div class="payment-methods">
                <div class="placeholder">
                    <img src="/images/static/paymentMethods/payment_methods_bar_{{ $shop->getShop()->slug }}.png"
                         alt="Payment Methods"/>
                </div>
            </div>

            <div class="selling-points-mobile">
                <div class="placeholder">
                    @include('mobile.partials.benefits')
                </div>
            </div>

        </div>

    </div>
@stop