laravel中get方式内容输出
Posted mayer326
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel中get方式内容输出相关的知识,希望对你有一定的参考价值。
php部分
$related = articles::where(‘title‘,‘like‘,‘%‘.$title.‘%‘)
->where(‘id‘,‘<>‘,$id)
->groupBy(‘id‘)
->limit($count)
->get();
html部分
@foreach($related as $relate)
{{$relate->title}} //类似于这样
@endforeach
以上是关于laravel中get方式内容输出的主要内容,如果未能解决你的问题,请参考以下文章