位置: \waimao\app\Http\Controllers\Frontend
//引入时间
use Carbon\Carbon;
// 加入条件查询
->where('created_at', '<', Carbon::now()
// 三个方法的查询语句
$news = News::with(['cates', 'description'])->flag()->where('created_at', '<', Carbon::now())->latest()->paginate($pageNum);
$news = News::with(['cates', 'description'])->whereIn('pid', $idArr)->flag()->where('created_at', '<', Carbon::now())->latest()->paginate($pageNum);
$news = News::with(['cates.description', 'description'])->flag()->where('created_at', '<', Carbon::now())->where('slug', $id)->first();
截图1
截图2