@extends(get_view('index')) @section('title'){{ $post->content->title }} - @endsection @section('description'){{ $post->content->description ?? $post->content->title }}@endsection @section('author'){{ $post->user->name }}@endsection @section('header') @endsection @section('content')
@if ( $post->image != null ) {{ $post->content->title }} @endif

{{ $post->content->title ?? '' }}

{!! $post->content->description !!}

{{ translate('shared_by') }}:

{{ $post->user->name }}

{{ translate('date') }}:

{{ $post->created_at->diffForHumans() }}

{{ translate('category') }}:

{{ $post->category->content->name ?? '' }}

{{ translate('share_on_social_media') }}:

{!! $post->content->content !!}

Bir cevap yazın

E-posta adresiniz yayınlanmayacak gerekli alanlar * ile işaretlenmiştir.

@csrf
@if( Auth::check() ) @else @endif
@foreach($comments as $comment)

{{ $comment->getUser->name ?? '' }}

{{ $comment->comment_text ?? '' }}

{{ $comment->created_at->diffForHumans() }}

@endforeach
@endsection @section('footer') @endsection