Laravel 简单实现Ajax滚动加载示例(2)
resources/view/data.php
@foreach($posts as $post) <div> <h3><a href="">{{ $post->title }}</a></h3> <p>{{ str_limit($post->description, 400) }}</p> <div class="text-right"> <button class="btn btn-success">Read More</button> </div> <hr style="margin-top:5px;"> </div> @endforeach
效果:
以上这篇Laravel 简单实现Ajax滚动加载示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持黑区网络。