Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a django-like framework for PHP with auto-generated CRUD pages? [closed]

I'm looking for a simple MVC framework for PHP and would like something that handles basic user auth (for the admin) and generates it's own CRUD pages out of the box.

Edit: I'd really like something that creates these admin pages on the fly or "automatically" instead of the whole "baking" concept or having to manually update the CRUD pages via some generator.

like image 892
Matt Avatar asked Dec 04 '22 11:12

Matt


1 Answers

Have you tried CakePHP?

Using bake you can generate Models, Views and Controllers with CRUD.
Cake also has a Security component and Access Control Lists (ACL).

like image 70
NullUserException Avatar answered Jan 07 '23 19:01

NullUserException