input('view')) { case 'public': $table->where('status', 30) ->where('updated_at', '>', $request->input('updated_at', '2000-1-1')); break; } $count = $table->count(); //处理排序 $table->orderBy('updated_at', 'asc'); //处理分页 $table->skip($request->input("offset", 0)) ->take($request->input("limit", 200)); //获取数据 $result = $table->get(); return $this->ok(["rows" => $result, "count" => $count]); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\Channel $channel * @return \Illuminate\Http\Response */ public function show(Channel $channel) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\Channel $channel * @return \Illuminate\Http\Response */ public function update(Request $request, Channel $channel) { // } /** * Remove the specified resource from storage. * * @param \App\Models\Channel $channel * @return \Illuminate\Http\Response */ public function destroy(Channel $channel) { // } }