6

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?

tereško
  • 58,060
  • 25
  • 98
  • 150
ab.
  • 63
  • 1
  • 1
  • 3

6 Answers6

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
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

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

bancer
  • 7,475
  • 7
  • 39
  • 58
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

  • 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