Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
197 views
in Technique[技术] by (71.8m points)

laravel - Comments not displaying when feedback is true

I'm trying to get my comments to display if my feedback is true, but nothing is showing, and I'm getting an empty array. Some comments have feedback = true.

public function getComments(Post $post)
{
    foreach($post->comments as $comment)
    {
        if($comment->feedback == true)
        {
            dd($comment);
        }
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...