2 回答
TA贡献1824条经验 获得超6个赞
你可以使用PHP的count()来计算所有元素。
public function index()
{
$tags = Constant_model::getDataAllWithLimit('tags', 'id', 'DESC', 50);
if (count($tags) > 0) {
$data = array(
'title' => 'All Tags',
'description' => 'All Tags',
'seo_keywords' => 'All Tags',
'tags' => $tags
);
return view('tags', $data);
}
$data = array(
'title' => 'Page Not found',
'description' => 'Page not found',
'seo_keywords' => '',
);
return view('404', $data);
}
public function getDataAllWithLimit($table, $order_column, $order_type, $limit)
{
return DB::table($table)->orderBy($order_column, $order_type)->paginate($limit);
}
TA贡献1794条经验 获得超8个赞
试试这个,希望它有帮助...
if (count($tags->toArray()['data']) > 0) {
$data = array(
'title'=>'All Tags',
'description'=>'All Tags',
'seo_keywords'=>'All Tags',
'tags'=>$tags
);
return view('tags',$data);
}else{
$data = array(
'title'=>"Page Not found",
'description'=>"Page not found",
'seo_keywords'=>'',
);
return view('404',$data);
}
- 2 回答
- 0 关注
- 81 浏览
添加回答
举报