here is like this https://laracasts.com/lessons and when i click any lesson it goto https://laracasts.com/lessons/understanding-joins
Mar 17, 2015
8
Level 13
How to show few content about image
Hey I try to make where user can upload images and I want show that images in pagination and every image have content(may be long) but I want show some content and link it to a page only about this image where it have comment long content and many more like in laracasts website ?
thanks
Level 53
use the helper function str_limit($value, $limit = 100, $end = '...')
Example:
$posts = Post::all();
$excerpt = str_limit($posts->body, 100, '...');
// in your view where you show all of the posts instead of listing the body, list the $excerpt
$posts->excerpt //instead of $posts->body
Please or to participate in this conversation.