@extends('layouts.app') @section('content')
     
{{ config('app.name') }} Forum  > {{ $post->category->name }}  > {{ $post->title }}  
 
@foreach ($replies as $reply) @endforeach
Previous Thread :: Next Thread 
 Author  Thread: {{ $post->title }}
@if ($post->user->admin) @endif
user->id)) src="/ForumC/skins/default/images/user_IsOnline.gif" @else src="/ForumC/skins/default/images/user_IsOffline.gif" @endif style="border-width:0px;" /> {{ $post->user->username }}
Forum Moderator
Joined: {{ date('m/d/Y', strtotime($post->user->joined)) }}
Total Posts: {{ $post->user->posts->count() + $post->user->threads->count() }}
 
{{ $post->title }}
Posted: {{ date('m-d-Y g:i A', strtotime($post->created_at)) }} ({{ $post->created_at->diffForHumans() }})
@parsedown($post->body)
@if (!$post->locked) @endif @if (Auth::user()->admin) @endif
@if ($reply->user->admin) @endif
user->id)) src="/ForumC/skins/default/images/user_IsOnline.gif" @else src="/ForumC/skins/default/images/user_IsOffline.gif" @endif style="border-width:0px;" /> {{ $reply->user->username }}
Forum Moderator
Joined: {{ date('m/d/Y', strtotime($reply->user->joined)) }}
Total posts: {{ $reply->user->posts->count() + $reply->user->threads->count() }}
 
Re: {{ $post->title }}
Posted: {{ date('F j, Y, g:i A', strtotime($reply->created_at)) }} ({{ $reply->created_at->diffForHumans() }})
@parsedown($reply->body)
@if (!$post->locked) @endif @if (Auth::user()->admin)
@csrf
@endif
{{ $replies->links('pagination.simple') }}
 
{{ config('app.name') }} Forum  > {{ $post->category->name }}  > {{ $post->title }}  
       
@endsection