Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

mileswebhosting's avatar

mileswebhosting wrote a reply+100 XP

5mos ago

PhpStorm not recognizing built-in React props

A few things to check,

  • Make sure React typings are installed
  • Check file extensions
  • Verify TypeScript service
  • JSX setting in tsconfig
mileswebhosting's avatar

mileswebhosting wrote a reply+100 XP

5mos ago

Should I use laravel telescope in production ?

Laravel Telescope can be used in production, but it should never be enabled fully or publicly.

Restrict access strictly (IP whitelisting, auth gates, or environment checks).

mileswebhosting's avatar

mileswebhosting wrote a reply+100 XP

5mos ago

Separate table over json column

225k rows/day is nothing scary for a modern relational DB.

For your use case, athlete_room_round (or scores) as a proper table is the right design, not a JSON column.

You can always add caching/summary tables later if analytics get heavy.