The Philadelphia 76ers will be missing a major inside presence on Sunday.
Star centre Joel Embiid won’t play against the Toronto Raptors due to left knee injury management and left groin soreness, the team said.
The oft-injured Embiid has appeared in just 19 games this season, averaging 23.5 points and 7.1 rebounds per contest.
He had played in a season-high six consecutive games prior to being ruled out against the Raptors.
Meanwhile, Paul George was a late scratch for the 76ers. The nine-time all-star was expected to play all the way into warm-ups but was ruled out minutes before tip-off, with Kelly Oubre Jr. getting the start in his place.
Toronto, meanwhile, is facing some injury questions of its own with stars Brandon Ingram and Scottie Barnes both listed as questionable.
Forward RJ Barrett and centre Jakob Poeltl have already been ruled out.
Live coverage of 76ers-Raptors will be available on Sportsnet and Sportsnet+ beginning at 6 p.m. ET / 3 p.m. PT.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_7c7776b85fea1a3b9a56899aa2a2b299', 'NBA', '8e32a834-9e29-43be-a098-bcd90ccba18a');


