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/mobile/pages/posts_show.blade.php
@extends('mobile.master')

@section('content')
    <div class="mobile-page">

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


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

            <div class="c-post__content  text-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>

                {{ $post->description }}

            </div>

        </section>

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

    </div>
@stop