コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $articles = Article::with('category')->orderBy('sort', 'desc')->orderBy('created_at', 'desc')->paginate(8);
     return view('admin.article.index', ['articles' => $articles]);
 }