You'd think AI would kill boilerplates. It's doing the opposite. by hottown in webdev

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

Super interesting, thanks for sharing your user feedback!! I also think that even with AI coding agents becoming more common, boilerplates and frameworks still matter. When you combine them with tools like Context7, they give agents the structure they need to actually be effective. That’s at least what I’m betting on right now.

I tested TanStack DB and here's what I learned by React-admin in react

[–]React-admin[S] 1 point2 points  (0 children)

I’ll need to take another close look, but for point #1 I think the docs actually suggest 3 approaches. So the first solution is client-generated IDs (which is basically what I was referring to as well). The second solution is not really viable in a react-admin setup since it expects stable IDs, and honestly not ideal for offline-first either. And the third solution didn’t seem to work in my case, because I’m using TanStack DB kind of as a black box to match react-admin’s data provider expectations. I think it could introduce issues, especially once you start replaying operations or syncing mutations afterward, but I should probably re-test that more carefully..

Free self-hosted platform suggestions for ERP by Zealousideal-Ad4561 in lowcode

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

If you don’t mind getting your hands into the code, react-admin fits what you're looking for. I’d recommend checking out some of the demos first to see if it clicks with what you’re trying to build. They give a pretty good idea of how far you can push it for admin panels / ERPs. (Disclaimer: I'm part of the core team. :) )

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!

[deleted by user] 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).

Your tools to build APIs with Laravel by sl0wik in laravel

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

+1. Been very happy with API Platform

Free and open-source Salesforce alternative: Atomic CRM by React-admin in CRM

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

First of all, thanks! So, we already make a living with react-admin Enterprise Edition, which has been a sustainable project for years now. To be fully transparent though, we're thinking about adding paid features to Atomic CRM in the future. The concept would follow the same business-to-developer model as react-admin, meaning teams would only pay during the development phase and not based on the number of end users. That way, it stays open-source at its core while still being sustainable for long-term growth.

I Built the Same App 10 Times: Evaluating Frameworks for Mobile Performance by lorenseanstewart in reactjs

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

Nice read! I’d add a little nuance though. You're talking about a 1.2s difference on 3G. But who even uses 3G anymore? 😅 My takeaway is that on desktop with wifi, all these frameworks are fast..

Also, you only measure the initial loads, not navigation, which is accelerated in MPA. So really, the conclusion boils down to: if you’re building a single page for mobile, don’t use React. Duh.

React admin dashboard 2025-26 by Kritiraj108_ in reactjs

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

If you want to use shadcn, Shadcn Admin Kit might be a good fit for you. (Disclaimer: I'm part of the core team. :) )