X

5'x8' BWISE TRAILERS Dump DTR508LP-5-D 15"

2026 Bwise 5x8 Dump Trailer

Axles1 -5200 lb. Premium Axles
Suspension6-Leaf II
BrakesElectric Self Adjusting Brakes
TiresST225/75R15 8 ply Radial
Wheel15" Black Mod Wheels
Coupler2" A Frame Coupler
Jack2K Top Wind Jack
ToolboxLockable Pump Box with Gas Shock
Stake PocketsFull Height Stake Pockets
BatteryGR24 Deep Cycle
Wiring HarnessAll-Weather Wiring Harness (7-way RV)
Charge WireCharge Wire with Circuit Breaker
LightingRubber Mount Lifetime LED Lights
One Piece Tailgate
3" Single Acting Cylinder
5'x8' BWISE TRAILERS Dump DTR508LP-5-D 15"
Price: $5,499 On Sale! $5,200
Black - Dump
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 003371
VIN: 58CB1D813TC003371
Condition: New
Year: 2026
Manufacturer: BWISE TRAILERS
Model: DTR508LP-5-D
Length: 8'
Width: 5'
Height: 15"
GVWR (lbs): 5,000
Weight (lbs): 1,215
Payload (lbs): 3,785
Features: Tongue Box

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'; }); });