@extends('layouts.app') @section('content')

{{$status->profile->username}} {!! $status->rendered ?? e($status->caption) !!}

@foreach($status->comments->reverse()->take(10) as $item)

{{$item->profile->username}} {!!$item->rendered!!} {{$item->created_at->diffForHumans(null, true, true ,true)}}

@endforeach
@if(Auth::check()) @if(Auth::user()->profile->id === $status->profile->id || Auth::user()->is_admin == true)
@csrf
@endif @endif
@csrf
@endsection