X

6'x12' RC Trailers Enclosed Cargo RWT 6X12SA 72"

2025 RC Trailers 6x12 Enclosed Trailer 

Hitch 

2″ Coupler on Single Axles 

2,000 lb. Top Wind Jack with Sand Pad 

Safety Chains 

Axles 

SA Models – 3,000 lb. Spring Idler Axle 

Tires and Rims 

ST205/75R15 Bias 

Silver Wheels 

Frame 

24″ On Center Floor, Roof, and Walls

18″ Wedge Nose 

Undercoated Frame 

Side Door – All Doors with NO Step 

32″ Door with Barlock 

Rear Door 

 (1,000 lb. Light Duty Ramp Door)  

Interior 

3/4″ Engineered Wood Flooring 

3/8″ Plywood Walls Trimmed with Lauan 

Height 72"

Exterior 

Flow-Thru Sidewall Vents 

.030 Exterior Metal 

Inverted ATP Stoneguard 

Galvanized Steel Roof 

Mill Finish Rear Corners and Header 

ATP Fenders 

1-1/2″ Lower Trim 

3″ Top Rail 

Electrical 

4-Way Plug on Idler Axles 

Breakaway Box, Battery and Switch 

12-Volt Dome Light 

LED Strip Tail/Brake Lights, Surface Mounted 

LED Clearance Lights, Surface Mounted 

6'x12' RC Trailers Enclosed Cargo RWT 6X12SA 72"
Our Price! $4,750
White - Enclosed Cargo
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 682926
VIN: 56VRBEB10TM682926
Condition: New
Year: 2025
Manufacturer: RC Trailers
Model: RWT 6X12SA
Length: 12'
Width: 6'
Height: 72"
GVWR (lbs): 2,990
Weight (lbs): 1,360
Payload (lbs): 1,630
Features: Barlock on Door, Ramp Gate, Rock Shield, Side Door

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });