为什么redirect()在if语句中不起作用,如何在if语句中执行它?在laravel 5.8中

时间:2019-11-02 16:23:19

标签: php laravel laravel-5

  1. 执行此功能后,我看到的只是白页,什么都没有
  2. 此功能用于按类别,州和城市对帖子进行排序。
public function sorting_posts(Request $R){

  if( (!is_null($R->state) AND is_null($R->municipal) ) AND is_null($R->type) ){
    $Posts = Post::latest('created_at')
    ->where('state_id',$R->state)
    ->where('category_id',$R->category_id)
    ->paginate(9);

    return redirect()->route('by.category',$R->category_id)->with('Posts',$Posts);
  }
}

0 个答案:

没有答案