File: D:/HostingSpaces/PDeckers/opelkapitan.nl/app/views/layouts/pages/otherGroup.blade.php
@extends('layouts.master')
@section('intro-content')
<div class="full-text content-container">
<h2>{{$data->content->translation->name}}</h2>
{{$data->content->translation->description}}
</div>
@endsection
@section('inner-content')
@include('layouts.partials.projects.groupPocketsOther')
@endsection
@section('editable_content')
@include('layouts.partials.defaultIntro')
<?php
switch($data->content->code_name){
case 'other':
$thisBackground = '/img/backgrounds/others.jpg';
break;
default:
$thisBackground = '/img/blur-background.jpg';
break;
}
?>
@include('layouts.partials.projects.globalContainer', ['backgroundImage' => $thisBackground])
@endsection
@section('extra-js')
@endsection