Answer the question
In order to leave comments, you need to log in
How to shorten the text of the post on the main page?
The controller has this entry:
public function index()
{
$posts = Post::latest('published_at')->where('is_published','true')->limit(5)->get();
return view('welcome',compact('posts'));
}
Answer the question
In order to leave comments, you need to log in
Register in the Post model
public function getShortContentAttribute()
{
return Str::limit($this->content, 20, ' (...)');
}
$post->ShortContent;
This is done not in the controller, but in the blade itself. Read here
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question