在Laravel视图中调用未定义的函数

时间:2018-06-12 04:42:32

标签: php html laravel-5.5

我的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)

我现在该怎么办?

2 个答案:

答案 0 :(得分:1)

我不知道word_teaser_end()因为它的定义功能, 尝试使用str_limit()辅助函数,它可以帮助您加载字符串

中的单词数
{{ str_limit($string,'10') }}

https://laravel.com/docs/5.6/helpers#method-str-limit

答案 1 :(得分:0)

这应该有帮助。

{!! str_limit($string,'10') !!}