@extends('layouts.tenant', ['title' => 'Blog']) @section('content')
New post
@foreach($posts as $post)

{{ $post->title }}

{{ $post->body }}

{{ $post->author->name }}

· {{ count(explode(' ', $post->body)) }} words
@endforeach
@endsection