laravel中我们使用distinct()来去重数据,例如 ,我banner表中用来分类的方法。取个巧。
//start
$types = Banner::select('type')->distinct()->get();
//over
laravel中我们使用distinct()来去重数据,例如 ,我banner表中用来分类的方法。取个巧。
//start
$types = Banner::select('type')->distinct()->get();
//over