@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 $index => $thread) @empty @endforelse
    # Title Date Creator Status
    {{ $index+1 }} {{ $thread->comments_count }} {{ $thread->title }} {{ $thread->created_at->diffForHumans() }} {{ $thread->creator->name }} Active
    No data.
    @endsection