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/honger.komma.pro/resources/views/site/pages/process.blade.php
@extends('site.master')

@section('content')

    {{-- Intro header --}}
    @include('site.partials.header',[
        'key' => 'process',
        'target' => 'step-meet'
    ])

    {{-- Loop through all process steps --}}
    @foreach(Config('site.process') as $stepKey => $step)

        {{-- Process --}}
        @include('site.partials.process.processRow',[
            'key' => $stepKey,
            'target' => $step['target'],
            'title' => Lang::get('site/process.steps.' . $stepKey . '.title'),
            'description' => Lang::get('site/process.steps.' . $stepKey . '.description'),
            'button' => Lang::get('site/process.steps.' . $stepKey . '.button')
        ])

    @endforeach

    {{-- Last step is slightly different --}}
    @include('site.partials.process.processRow',[
        'key' => 'aftercare',
        'title' => Lang::get('site/process.steps.aftercare.title'),
        'description' => Lang::get('site/process.steps.aftercare.description'),
        'button' => false
    ])

    {{-- Call to action bar --}}
    @include('site.partials.callToActionBar',['key' => 'stef'])

@endsection

@section('footer_button')
    @include('site.partials.footerButton',[
            'label' => "Diensten",
            'href' => "/diensten"])
@endsection