@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('navs.frontend.dashboard') ) @push('after-styles') @endpush {{--Scripts for this page--}} @push('after-scripts') {{-- --}} @endpush @section('content') {{-- Forum threads display--}} @if(isset($lab)) {!! Breadcrumbs::render('frontend.lab.forum.thread', $lab, $thread) !!} @else {!! Breadcrumbs::render('frontend.threads.show', $thread) !!} @endif
Thread: {{$thread->title}}
{{$thread->user->name}}
@foreach($thread->tags as $tag) #{{$tag->text}} @endforeach
{!! $thread->body!!}
{{-- Replies--}} @foreach($thread->replies as $reply)
{{--
--}} {{-- Name and date--}}
{{$reply->user->name??''}}
{{$reply->created_at->diffForHumans()}}
{{--
--}}
{!! $reply->body!!}
 
@endforeach {{--
--}} {{-- --}} {{-- @foreach($thread->replies as $reply)--}} {{-- --}} {{-- --}} {{-- --}} {{-- @endforeach--}} {{--
--}} {{--
--}} {{--
{{$reply->user->name}} {{$reply->created_at->diffForHumans()}}--}} {{--
--}} {{--
--}} {{--
--}} {{--
{{$reply->title}}
--}} {{--
--}} {{--
--}} {{-- {!! $reply->body !!}--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--  --}} {{-- --}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{--
--}}
@endsection @section('dialogs') @endsection