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

{{$config['heading']}}

@auth() @else @endauth
@foreach($listings as $listing)
{!! gravatar($listing->user->name,$listing->user->avatarurl,'h-10 w-10 rounded-full bg-gray-800 text-xs font-bold flex items-center justify-center text-white') !!}
@if($listing->post_id) @endif

{{$listing->title}}

@if($listing->user->username) {{$listing->user->username}} @endif @if($listing->comment_count) @endif
@endforeach
New Thread
@auth()
@endauth
@endsection