[ 'source' => ['author.name', 'title'], ] ]; } /** * Relation to Author model. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function author(): BelongsTo { return $this->belongsTo(Author::class); } }