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?
Asked
Active
Viewed 2.5k times
6 Answers
3
Here is a great article on creating a admin section for CakePHP Creating an Admin Section with CakePHP

Steven Smethurst
- 4,495
- 15
- 55
- 92
-
1Thanks for this link :). Here is the updated version which works on version 1.3.3 http://www.jamesfairhurst.co.uk/posts/view/cakephp_1_3_3_admin_section_template_files/ – Yousf Mar 04 '11 at 13:13
-
1You should use Auth Component. – santiagobasulto Aug 13 '11 at 15:30
-
People who only need a VERY barebones solution can use CakePHP's default scaffolding. – Vael Victus Sep 27 '13 at 21:34
2
BrowniePHP could be helpful. Its a plugin for CakePHP that will save you time on backend development work.

happyhardik
- 24,987
- 7
- 47
- 60
1
The better and cleaner way will be to put all your pages of admin under controllers. For example: controllers/admin

Sarfraz
- 377,238
- 77
- 533
- 578
0
The easiest and fasted way to add an admin panel to cakephp is to use a plugin: https://github.com/Maldicore/Admin

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

user3436247
- 11
- 2
-
While links can be useful, it is recommended to include the contents of the links as the answer will be of no use if the data on links is removed or replaced. – Shubham Kadlag Jun 13 '18 at 13:06