我的Laravel网站主页上有About Us
部分。我已从管理面板上传了一篇关于About Us
的大文章,该文章显示在about us
页面中。但我想在主页中为about us
显示一个特定数量的单词,然后添加read more
。点击read more
时,会转到about us
页面。
但是我无法在我的主页中显示该文章的具体数量。
我使用了echo word_teaser_end($about_us[0]->details, 10);
函数,但它给出了错误
Call to undefined function word_teaser_end() (View: E:\xampp\htdocs\OFFICE\SEN_CARE\sencare.com.bd\resources\views\frontend\home\home.blade.php)
我现在该怎么办?
答案 0 :(得分:1)
我不知道word_teaser_end()
因为它的定义功能,
尝试使用str_limit()
辅助函数,它可以帮助您加载字符串
{{ str_limit($string,'10') }}
答案 1 :(得分:0)
这应该有帮助。
{!! str_limit($string,'10') !!}