wiki dashboard testing
This commit is contained in:
@@ -340,15 +340,13 @@ class AdminController extends Controller
|
|||||||
$wikiUsers[$temp->id] = $temp->name;
|
$wikiUsers[$temp->id] = $temp->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
$wikiUsers = asort($wikiUsers);
|
asort($wikiUsers);
|
||||||
|
|
||||||
dd($wikiUsers);
|
|
||||||
|
|
||||||
foreach($tempGroups as $temp) {
|
foreach($tempGroups as $temp) {
|
||||||
$wikiGroups[$temp->id] = $temp->gname;
|
$wikiGroups[$temp->id] = $temp->gname;
|
||||||
}
|
}
|
||||||
|
|
||||||
$wikiGroups = asort($wikiGroups);
|
asort($wikiGroups);
|
||||||
|
|
||||||
return view('admin.dashboards.wiki')->with('wikiUsers', $wikiUsers)
|
return view('admin.dashboards.wiki')->with('wikiUsers', $wikiUsers)
|
||||||
->with('wikiGroups', $wikiGroups)
|
->with('wikiGroups', $wikiGroups)
|
||||||
|
|||||||
Reference in New Issue
Block a user