where('provider', $provider)->where('key', $key)->first(); } elseif ($key !== 'redirect') { $social = $this->where('provider', $provider)->lists('value', 'key')->toArray(); } if (is_object($social)) { $social = $social->value; } return $social; } public function checkActive($provider) { $check = ''; $social = $this->where('provider', $provider)->where('key', 'status')->first(); if ($social) { $value = $social->value; if ($value === '1') { $check = true; } } return $check; } public function checkInactive($provider) { $check = ''; $social = $this->where('provider', $provider)->where('key', 'status')->first(); if ($social) { $value = $social->value; if ($value === '0') { $check = true; } } return $check; } }