'boolean', 'published_at' => 'datetime', 'author_id' => 'integer', ]; public function author(): BelongsTo { return $this->belongsTo(User::class, 'author_id'); } // route model binding přes slug (pro /api/news/{slug}) public function getRouteKeyName(): string { return 'slug'; } }