File: D:/HostingSpaces/EUmans/umansradepo.be/app/views/layouts/partials/projectDetailPage.blade.php
<div class="project-detail">
<div class="content-container row">
<div class="project-images grid6">
@foreach($page->images as $image)
<a href="{{$image->large_image_url}}" data-lightbox="house">
<img alt="{{Str::slug($page->translation->name)}}" src="{{$image->large_image_url}}"/>
</a>
@endforeach
</div>
<div class="information grid5 offset-1 @if(sizeof($page->images)<=1) no-sticky-allowed @endif">
<h1>@lang('projects.material-'.$page->material) @lang('projects.doors-windows-'.$page->doors_windows)<br/>{{$page->translation->name}}</h1>
{{$page->translation->description}}
<div class="grid6 project-sub-information">
<h2>@lang('translations.specifications')</h2>
<ul>
@if( \Config::get('app.radepoActive'))
<li><span>@lang('translations.material')</span>@lang('projects.material-'.$page->material)</li>
<li><span>@lang('translations.type')</span>@lang('projects.type-'.$page->type)</li>
@else
<li>
<span>@lang('translations.material')</span>@lang('isolation/translations.material-'.$page->material)
</li>
@endif
@if(isset($page->color) && $page->color != '')
<li><span>@lang('translations.color')</span>{{$page->color}}</li>
@endif
<li><span>@lang('translations.client-type')</span>@lang('projects.client_type-'.$page->client_type)
</li>
@if(isset($page->location) && $page->location != '')
<li><span>@lang('translations.location')</span>{{$page->location}}</li>
@endif
<li><span>@lang('translations.buildyear')</span>{{$page->date->year}}</li>
</ul>
</div>
<div class="grid5 offset-1 sub-information @if(($page->translation->author!='')&&($page->translation->quote!='')&&($page->stars!=null)) quote-block @endif">
@if(($page->translation->author!='')&&($page->translation->quote!='')&&($page->stars!=null))
<div class="quote-holder">
<div class="placeholder">
<h4>{{$page->translation->quote}}</h4>
<p>{{$page->translation->author}}</p>
<div class="stars">
@for($s = 0; $s <5; $s++)
@if($s < $page->stars)
<span class="full-star"></span>
@else
<span class="empty-star"></span>
@endif
@endfor
</div>
</div>
</div>
@else
@if( \Config::get('app.radepoActive'))
@if($page->material == 1)
<h2>@lang('translations.why-pvc')</h2>
<ul>
@foreach(trans('advantages.pvc-list') as $item)
<li>{{$item}}</li>
@endforeach
</ul>
@else
<h2>@lang('translations.why-alu')</h2>
<ul>
@foreach(trans('advantages.alu-list') as $item)
<li>{{$item}}</li>
@endforeach
</ul>
@endif
@else
@if($page->material == 1)
<h2>@lang('advantages.termopearls-adventage')</h2>
<ul>
@foreach(trans('advantages.termopearls-list') as $row)
<li>{{$row}}</li>
@endforeach
</ul>
@else
<h2>@lang('advantages.biofoampearls-adventage')</h2>
<ul>
@foreach(trans('advantages.biofoampearls-list') as $row)
<li>{{$row}}</li>
@endforeach
</ul>
@endif
@endif
@endif
</div>
<div class="clear"></div>
<a href="/{{$links->offer->route}}" class="button blue project-button">
@lang('translations.offerCall')<span></span>
</a>
<div class="button-row">
@if(isset($page->next))
<a href="/{{$page->next->translation->route->route.$queryString}}" class="button blue previous">
<span></span>
</a>
@else
<div class="button-placeholder"></div>
@endif
@if(isset($links->references))
<a href="/{{$links->references->route}}" class="overview button blue">
<span></span>
</a>
@endif
@if(isset($page->previous))
<a href="/{{$page->previous->translation->route->route.$queryString}}" class="button blue next">
<span></span>
</a>
@else
<div class="button-placeholder"></div>
@endif
</div>
</div>
</div>
</div>
<div class="magnet-box"></div>