mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-25 01:05:36 +00:00
Update AdminController
This commit is contained in:
parent
4674a6d1b1
commit
930fb379c7
1 changed files with 3 additions and 3 deletions
|
@ -207,11 +207,11 @@ class AdminController extends Controller
|
||||||
$order = $request->input('order') ?? 'desc';
|
$order = $request->input('order') ?? 'desc';
|
||||||
$limit = $request->input('limit') ?? 12;
|
$limit = $request->input('limit') ?? 12;
|
||||||
if($search) {
|
if($search) {
|
||||||
$profiles = Profile::where('username','like', "%$search%")->orderBy('id','desc')->paginate($limit);
|
$profiles = Profile::select('id','username')->where('username','like', "%$search%")->orderBy('id','desc')->paginate($limit);
|
||||||
} else if($filter && $order) {
|
} else if($filter && $order) {
|
||||||
$profiles = Profile::withCount(['likes','statuses','followers'])->orderBy($filter, $order)->paginate($limit);
|
$profiles = Profile::select('id','username')->withCount(['likes','statuses','followers'])->orderBy($filter, $order)->paginate($limit);
|
||||||
} else {
|
} else {
|
||||||
$profiles = Profile::orderBy('id','desc')->paginate($limit);
|
$profiles = Profile::select('id','username')->orderBy('id','desc')->paginate($limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
return view('admin.profiles.home', compact('profiles'));
|
return view('admin.profiles.home', compact('profiles'));
|
||||||
|
|
Loading…
Reference in a new issue