@extends('layout') @section('content')

Hello world! They're my books:

@foreach ($books as $book)

{{ $book->name }} @if ($book->author_id) by {{ $book->author->name }} @endif

@endforeach @endsection