@extends('layouts.app') @section('content') @foreach($news as $post)

{{ $post->title }}

Written at: {{ $post->created_at }}

{{ $post->text }}

@isset ($post->author) Author: {{ $post->author }} @endisset
@endforeach @endsection()