GodZiLLa,
добавь в app/Models/Post.php
/**
* Возвращает сокращенный текст
*/
public function shortText(int $words = 100): HtmlString
{
if (wordCount($this->text) > $words) {
$more = view('app/_more', ['link' => route('topics.topic', ['id' => $this->topic_id, 'pid' => $this->id])]);
$this->text = bbCodeTruncate($this->text, $words) . $more;
} else {
$this->text = bbCode($this->text);
}
return new HtmlString($this->text);
}
и в resources/views/feeds/_topics.blade.php
замени текст на
<div class="section-message">
{{ $post->lastPost->text ? $post->lastPost->shortText() : 'Удалено' }}
</div>
карта есть /sitemap.xml
Изменил: Вантуз-мен 18.09.2025 / 14:29