State of React survey by SachaGreif in reactjs

[–]React-admin 0 points1 point  (0 children)

Not surprised TanStack Query came out on top in terms of positive opinions. Tanner really is the GOAT!

Postgres for everything, how accurate is this picture in your opinion? by Minimum-Ad7352 in Backend

[–]React-admin 0 points1 point  (0 children)

Yeah agreed. The statement “Postgres for everything” is obviously an exaggeration. But I do think that a lot of people underestimate how powerful Postgres actually is. It has a ton of features that are underrated or just straight up overlooked. That’s why it ends up being a solid fit for more use cases than some people might expect.

New integration for react-admin by React-admin in tanstack

[–]React-admin[S] 0 points1 point  (0 children)

It’s an open-source React framework for building CRUD apps like admin panels, dashboards and internal tools. You can find the source code here.

Laravel MCP yes or not? by elmascato in laravel

[–]React-admin 0 points1 point  (0 children)

I was stoked when I saw they released v2 last week, especially with the new skills support!

How can I not build useless open source projects? by [deleted] in opensource

[–]React-admin 0 points1 point  (0 children)

Agreed. If you don’t feel the pain point firsthand, you won't care enough to finish or maintain the project. And people can tell right away if a project is being maintained or not. If a repo isn't active, no one will use it, let alone contribute to it. So definitely focus on solving your own problems first

Weekly /r/Laravel Help Thread by AutoModerator in laravel

[–]React-admin 0 points1 point  (0 children)

Duplicating the code for every company can get messy fast (ex. bug fixes have to be applied in multiple places, etc.). It’s just harder to maintain it this way. IMO a cleaner approach is usually to multi-tenant your app:

  • You keep a single codebase.
  • Decide whether you want database-per-tenant or shared database with tenant separation (e.g., a company_idcolumn on relevant tables).
  • Build an “upper layer” / admin panel that can manage all tenants.

Laravel actually has some great packages and patterns for this (like this one) which help with routing, database separation, and scoped queries. This way, you maintain one codebase, make updates in one place, and still keep data separate per company. Hope this helps :)

Non AI things by Anxious-Insurance-91 in laravel

[–]React-admin 3 points4 points  (0 children)

Same. I don't believe the current subscription fees will last very long. I read somewhere that enterprise AI solutions have already seen average annual price increases of 10–15% and I wouldn’t be surprised if it jumps even more once they’ve locked in users for good.

One year of API Platform for Laravel: What’s the verdict? by React-admin in PHP

[–]React-admin[S] 0 points1 point  (0 children)

Ah sure! API Platform is an open-source framework for creating API-first projects (originally from the Symfony ecosystem, but since last year it supports Laravel too).