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/anvil.komma.pro/resources/views/site/partials/about/whyAnvil.blade.php
<section class="why-anvil-about-row">
    {{-- Background coloring --}}
    <div class="background">
        <span class="overview-page-background"></span>
    </div>

    <div class="grid-row">

        {{-- Page description --}}
        <div class="content">
            <div class="kms-content">
                <h2>{{ config('site.anvil.name') }}</h2>
                {!! $content !!}
            </div>

            <a href="{{config('site.anvil.url')}}" class="button">
                @lang('site/global.siteAnvil')
                <span class="arrow">
                    <svg width="19" height="14">
                        <use href="/img/arrow.svg#arrow"></use>
                    </svg>
                </span>
            </a>
        </div>

        <div class="anvil-group-companies">

            <h5>@lang('site/global.ourBusinesses')</h5>

            {{-- Other relative models menu--}}
            <nav>
                <ul>
                    @foreach($companies as $company)
                        @continue($company->code_name === 'group')
                        <li class="{{$company->code_name}}">
                            <a href="/{{$company->translation->route->alias}}">
                                <div class="company-wrapper">
                                    <div class="icon-placeholder">
                                        <div class="icon"></div>
                                    </div>
                                    <span class="name">{{$company->translation->name}}</span>
                                </div>
                                <span class="arrow"></span>
                            </a>
                        </li>
                    @endforeach
                </ul>
            </nav>
        </div>

        @if(isset($anvilReference))
            @include('site.partials.referenceBlock', ['reference' => $anvilReference])
        @endif

    </div>
</section>