@extends('layouts.app') @push('stylesheets') @endpush @push('scripts') @endpush @section('content')
{!! csrf_field() !!}
{{ $post->owner->name }}
{{ $post->access_count }}
{{ $post->created_at->format('d. m. Y') }}
{{ $post->updated_at->format('d. m. Y') }}

Beschreibung

@include('partials.richTextEditor', ['content' => $post->description, 'inputName' => 'description'])

Dateien {{ $post->documents->count() }}

Tags {{ $post->tags->count() }}

@include( 'partials.tagsinput', [ 'tags' => array_map(function($tag) { return $tag->value; }, $post->tags->all()) ] )
@endsection