@extends('layouts.app') @section('content')
Forum
Create a topic
    @if (count($topics)) @foreach ($topics as $topic)
  • {{ $topic->title }} {{ $topic->postCount() }}
    Created {{ Carbon\Carbon::createFromTimeStamp(strtotime($topic->created_at))->diffForHumans() }}
    Last post {{ Carbon\Carbon::createFromTimeStamp(strtotime($topic->updated_at))->diffForHumans() }} @can ('delete', $topic)
    {{ method_field('DELETE') }} {{ csrf_field() }}
    @endcan
  • @endforeach @else

    There are currently no topics listed in the forum.

    @endif
@endsection