Translate to Blade+Laravel a while loop

后端 未结 6 1545
無奈伤痛
無奈伤痛 2021-01-26 12:54

This code works, however in my learning of Laravel, I want to know if using Blade+Laravel syntax, can be better implemented



        
6条回答
  •  日久生厌
    2021-01-26 13:46

    The better solution would be to use @foreach

    @foreach( $image as $post->images )
    
       
    @endforeach

提交回复
热议问题