xxxxxxxxxx
public function index()
{
$userTotal = User::all();
$userActive = User::where('status', '=', 'Active');
$userInactive = User::where('status', '=', 'Inactive');
$userOnAndOff = User::where('status', '=', 'OnAndOff');
return view('member.home', compact('userTotal','userActive','userInactive','userOnAndOff'));
}