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