@extends('partial.layout') @section('content')

{{ $article->title }}

@if($article->attachments->isNotEmpty()) @php $attachment = $article->attachments->first(); $sizes = json_decode($attachment->sizes); $largeImage = optional($sizes)->large ?? $attachment->path; @endphp
{{ $article->title }}
@endif
{!! $article->description !!}
@if($article->tags)
برچسب‌ها:
    @php $tags = json_decode($article->tags, true) ?? []; @endphp @foreach($tags as $tag)
  • {{ $tag }}
  • @endforeach
@endif

نظرات ({{ $article->comments->count() }})

    @forelse($article->comments as $comment)
  • {{ $comment->customer->full_name }}
    {{ jdate($comment->created_at)->ago() }}

    {{ $comment->comment }}

  • @empty
  • هنوز نظری ثبت نشده است.
  • @endforelse
@guest('customer') @else

ثبت نظر

نظرات شما به ما کمک می‌کند تا خدمات بهتری ارائه دهیم

@csrf
@endauth
@endsection @push('styles') @endpush