Eagle Pass, Texas Substance Use Statistics And Treatment Options
Updated on June 2, 2020 | Published on September 30, 2019
Maverick County recorded 112 arrests in 2017 for adults driving while under the influence. Substance use treatment options near Eagle Pass can offer the assistance individuals need.
Substance Use Statistics In Eagle Pass And Maverick County, Texas
The data regarding substance use in Eagle Pass and Maverick County was collected by the Prevention Resource Center for Region 8. Some local facts include:
- In 2017, there were 41 vehicle crashes that involved alcohol.
- Of those 41 DUI-related car accidents, three people died.
- Between 1999 and 2016, Maverick County experienced 75 alcohol and drug-induced deaths.
- In 2017, 178 county residents were arrested for drunkenness.
Introducing
virtual care
Get treatment when
and how you need it.
Addiction Treatment Options In Eagle Pass Texas
In order to be most effective, addiction treatment needs to be individualized to meet your own unique needs. Especially when opioids or alcohol is involved, this often means residential treatment is the best option once you’ve completed medically supervised detox.
Once that intense program has been completed, many people move on to outpatient treatment and maintain their sobriety by opting for aftercare options. Regard Healthcare Texas, located in Scurry, Texas near Dallas, offers comprehensive treatment programs for every stage of your recovery.
Drug Detox Programs
The detox process is an important part of addressing an addiction to drugs and/or alcohol. While detoxing on your own can seem like an attractive option, it could expose you to extreme emotional and physical distress.
In some cases, these symptoms could be life-threatening. Professional detox programs provide medical staff to assist you.
Inpatient
Inpatient addiction treatment provides an invaluable opportunity for you to focus solely on caring for yourself. You’ll have 24/7 access to professional and support staff who are thoroughly trained in providing you with the assistance you need to address addiction and mental health.
Some inpatient addiction treatment programs last a few weeks while others can span a year or even longer.
Outpatient
Outpatient drug rehab is often used as a step-down treatment option after completing inpatient addiction treatment. In some cases, life’s responsibilities might not allow you to attend a residential treatment program.
Outpatient treatment could be an option if you have a solid support system and can attend sessions religiously.
Medication-Assisted Treatment
Medication-assisted treatment, also simply called MAT, uses a combination of FDA-approved medications and behavioral therapy. This specialized program is designed specifically to address alcohol or opioid use disorders.
How To Pay For Alcohol Or Drug Rehab
Most health insurance plans provide coverage for behavioral health services. In other instances, you might need to pay out-of-pocket for your care. In order to be fully informed, contact your insurance company and the treatment center for more information.
Virtual Care Is Available With Regard Healthcare
Regard Healthcare provides you with virtual care options that emphasize convenience and privacy without having to leave your home.
If you’re struggling with a co-occurring mental health conditions along with substance abuse, or need support to address any mental health issue, virtual care offers therapy solutions you can count on.
Help with Regard Healthcare
As a full-service alcohol and drug rehab center in Scurry, Regard Healthcare Texas provides a range of treatment options that can be individualized to meet you at every stage of your recovery.
Located on an expansive campus spanning 65 acres just outside of Dallas in Scurry, Texas, we’re known for our compassionate, professional staff that provides supportive care for mental and behavioral health.
//$startTime = microtime(true);
require_once 'inc/db.php';
require_once 'inc/lookups.php';
$requestLookup = $requestLookup ? $requestLookup : sanitize_text_field($_GET['lookup']);
$requestState = $requestState ? $requestState : sanitize_text_field($_GET['state']);
$requestCity = $requestCity ? $requestCity : sanitize_text_field($_GET['city']);
$requestLocation = $requestLocation? $requestLocation : sanitize_text_field($_GET['location']);
$dataOnly = $dataOnly ? $dataOnly : (bool) $_GET['dataonly'];
if ($requestLookup) {
if (array_key_exists($requestLookup, $lookupGroups)) {
$lookup = $requestLookup;
if (is_array($lookupGroups[$lookup])) {
$lookupGroup = $lookupGroups[$lookup];
}
$lookupName = $lookupTitles[$lookup];
}
if (!$lookup) {
$err['lookup'] = "Sorry, we couldn't find that category.";
}
}
if ($requestState && $lookup) {
$stateSlug = str_replace('-'.$requestLookup, '', $requestState);
$state = Model::factory('State')->where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources