I'm learning CakePHP 3.7.7 and I'm trying to configure it to use Bootstrap 4. Here what I did:
- installed bootstrap4 plugin, following the docs
- added in
src/Template/Layout/default.ctpthe CDN links as described here added in
src/View/AppView.php:$this->loadHelper('Html'); $this->loadHelper('Form'); $this->loadHelper('Flash');baked with this command:
bin/cake bake all -t LilHermit/Bootstrap4 MyTable
When I open the URL /MyTable the page partially loads with the following warning:
Warning (512): Method Cake\View\Helper\HtmlHelper::button does not exist [CORE/src/View/Helper.php, line 117]
What should I further do?