ab.
ab.

Reputation: 63

CakePHP admin panel

I am new to CakePHP and want an admin panel on my custom CMS for a client. Is there any way other than just linking to an admin page to each controller that I can pull views from other controllers such as users and posts?

Upvotes: 6

Views: 25028

Answers (6)

user3436247
user3436247

Reputation: 11

This is very detailed and a great article on how to create an admin panel in cakephp - Cakephp 3 admin panel-Cakephp admin backend

Upvotes: 0

happyhardik
happyhardik

Reputation: 25527

BrowniePHP could be helpful. Its a plugin for CakePHP that will save you time on backend development work.

Upvotes: 2

Robin
Robin

Reputation: 11

The easiest and fasted way to add an admin panel to cakephp is to use a plugin: https://github.com/Maldicore/Admin

Upvotes: 0

bancer
bancer

Reputation: 7525

You can try PoundCake Control Panel. It is still in beta but may be useful.

Upvotes: 0

Steven Smethurst
Steven Smethurst

Reputation: 4614

Here is a great article on creating a admin section for CakePHP Creating an Admin Section with CakePHP

Upvotes: 3

Sarfraz
Sarfraz

Reputation: 382696

The better and cleaner way will be to put all your pages of admin under controllers. For example: controllers/admin

Upvotes: 1

Related Questions