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/topswtw.komma.pro/app/views/pages/posts_show.blade.php
@extends('layouts.master')

@section('background')
    <div class="bg-50"></div>
@stop

@section('sidebar')
    @include('partials.sidebar')
@stop

@section('brandNavigationBar')
    @include('partials.brandNavigationBar')
@stop

@section('content')
    <div class="content-container column fluid-100">

        {{--Breadcrump--}}
        @include('partials.breadcrumb')

        <div class="top-bar content-block column fluid-100  c-post__pre">
            <div class="product-filter column fluid-66">
                <a href="{{$shop->getPageService()->getBackRoute('/'.$entity->route)}}"
                   class="back-btn">{{ Lang::get('pages/posts.back_to_overview') }}</a>
            </div>
        </div>

        <section class="c-post  content-block">

            @if(isset($post->large_image_url))
                <figure class="c-post__figure">
                    <img alt="{{ $post->name }}" src="{{ $post->large_image_url }}" />
                </figure>
            @endif

            <h1 class="c-post__title  page-title">{{ $post->name }}</h1>
            <h3 class="c-post__date">@lang('pages/posts.date'): {{\Carbon\Carbon::createFromFormat(\Carbon\Carbon::DEFAULT_TO_STRING_FORMAT, $post->date)->format('d / m / Y')}}</h3>

            <div class="c-post__content  text-block">
                {{ $post->description }}

                <div class="c-post__back">
                    <a href="{{$shop->getPageService()->getBackRoute('/'.$entity->route)}}"
                       class="back-btn">{{ Lang::get('pages/posts.back_to_overview') }}</a>
                </div>
            </div>

        </section>


    </div>
@stop

@section('askHelpPopUp')
    @include('partials.askHelpPopUp')
@stop