@extends('layouts.master') @section('content')
@lang('descriptions.article-news.crud')
@php $landscape_image_URL = ''; if (isset($entry)) { [$square_image_URL, $landscape_image_URL] = Helper::getArticleNewsImages($entry); } @endphp @csrf
@if ($entry->title !== '')
{{ $entry->title }}
@endif @if ($entry->description !== '')
{{ substr($entry->description, 0, 150) . ' ...' }}
@endif
zoom_in
@if ($entry->url !== '')
Vorschau Link: @if ($entry->url_description !== '') {{ $entry->url_description }} @else {{ $entry->url }} @endif
@endif @include ('partials.validity')
@if (isset($entry->remark))
Hinweis zur Freigabe:
{{ $entry->remark }}
@endif
Ergänzende Hinweise (optional)
Ändern
@endsection @section('back_button') Zurück @endsection