Hacker News new | ask | show | jobs
by cellover 1244 days ago
Does your DB have a classic design? You can very easily map an existing DB with a fresh Laravel install, just write a couple Models, their relationships and you're almost set.

I have been working with Laravel on a daily basis since 6 years and have never felt more efficient with code.

1 comments

Not sure what you mean by classic, but I designed it manually to be queried with plain SQL. So I suspect the answer to your question is yes.

Thanks for the info!

By classic I mean something somewhat standardized like user table: id, name, email ; post table: id, user_id, content etc.
Pretty much, then, yes.