@extends('layouts.app') @section('title') All Threads @endsection @section('description') All threads is here. @endsection @section('breadcrumb')
  • All Threads
  • @endsection @section('content')
    @forelse ($threads as $thread)

    {{ $thread->title }}

    user image {{ $thread->creator->name }} Shared publicly - {{ $thread->created_at->diffForHumans() }}

    {{ $thread->body }}

    more..
    @empty

    There are no relevant results at this time.

    @endforelse
    @endsection