Person with laptop

{{ $post->title }}

{{ $post->long_description }}

{!! $post->content !!}

دسته بندی ها

@foreach($post->categories as $cat) {{ $cat->name }} @endforeach

نظرات کاربران

@auth
@else برای ثبت نظر وارد حساب کاربری خود شوید @endauth @foreach($post->comments as $comment)
@php $user = \App\Models\User::find($comment->user_id); @endphp {{ $user->first_name }} {{ $user->last_name }}
ثبت شده در {{ $comment->created_at }}

{{ $comment->message }}

@endforeach