top of page

BRAHMA MEDIA WEEK AHEAD| Lee • Kershaw • Sumter • Richland-2 | Oct 6–12, 2025

  • Writer: Brahma Media, LLC
    Brahma Media, LLC
  • Oct 6
  • 1 min read
ree

Game of the Week: Ridge View (5–2) at Lugoff-Elgin (4–3)

Ridge View’s defense just blanked Spring Valley 37-0, holding the Vikings under 120 yards. Lugoff-Elgin’s offense, fresh off a 42-38 shootout win over Blythewood, will push tempo and attack the seams. Friday night decides who controls their region lane.


🟢 Key Match-Up: Ridge View’s front seven vs Lugoff-Elgin’s vertical passing game.

📍 Kickoff 7:30 PM | Forecast 66 °F County Check-Ins:

  • Crestwood vs Hartsville – RB Calvin Wofford leads the Knights into a must-win rhythm game.

  • Lee Central @ Lewisville – Lee Central rides a 32-22 victory over Great Falls; Lewisville hung 67 last week. Fireworks expected.

  • Westwood vs Spring Valley – Redhawks aim to rebound; Valley seeks redemption.

  • Blythewood vs West Florence – Bengals look to tighten their defense after last week’s thriller.

  • Irmo vs River Bluff – Jackets 6-0 and balanced; River Bluff hunting an upset.

    Momentum Meter: 💪 Teams Rising – Ridge View, Irmo ⚡ High-Scoring Units –Sumter, Lugoff-Elgin, Ridge View 🔒 Defensive Locks –Sumter, Irmo, Ridge View Athlete Spotlight:Spencer Bobian (Ridge View) – 16 carries 119 yards, 4 TDs vs Spring Valley; averaging 7.8 yards per carry.  Shamil Saadiq (Lugoff-Elgin) dominating the airways — 48 catches, 875 yards, 7 TDs in 7 games, averaging 125 a night! 📚 Also shout out to classroom standouts & volunteers—send nominations to info@brahmamediallc.com

    Closing Note: The playoffs are forming. Every snap this week adds to the story of South Carolina’s rising stars. Reach the World but Touch Our Communities First.

Comments


Follow Us:
  • White Facebook Icon

©2024 BRAHMA MEDIA LLC. Powered by Gozoek.com

Never miss an update
bottom of page
// Import the necessary Wix modules import wixData from 'wix-data'; import wixUsers from 'wix-users'; $w.onReady(function () { // Check if the current user is an admin wixUsers.currentUser.getRoles() .then((roles) => { const isAdmin = roles.some(role => role.name === "admin"); if (!isAdmin) { $w("#submitButton").disable(); $w("#errorMessage").text = "You do not have permission to add athletes."; } }); // Submit button click event with validation $w("#submitButton").onClick(() => { const name = $w("#nameInput").value; const age = Number($w("#ageInput").value); const sport = $w("#sportInput").value; const statistics = $w("#statisticsInput").value; const achievements = $w("#achievementsInput").value; const mediaCoverageLinks = $w("#mediaCoverageLinksInput").value.split(','); const photos = $w("#photosInput").value; const socialMediaLinks = $w("#socialMediaLinksInput").value.split(','); // Validation check if (!name || !age || !sport || !statistics || !achievements || mediaCoverageLinks.length === 0 || !photos || socialMediaLinks.length === 0) { $w("#errorMessage").text = "Please fill in all required fields."; return; } const newAthlete = { name: name, age: age, sport: sport, statistics: statistics, achievements: achievements, mediaCoverageLinks: mediaCoverageLinks, photos: photos, socialMediaLinks: socialMediaLinks }; wixData.insert("Athletes", newAthlete) .then(() => { $w("#successMessage").text = "Athlete added successfully!"; $w("#errorMessage").text = ""; // Clear error message }) .catch((err) => { console.error(err); $w("#errorMessage").text = "There was an error adding the athlete."; }); }); });