Cake PHP 3.2.1 - view.ctp can be full web page without default.ctp view wrapper?

A.
Cake PHP 3.2.1 - A viewX.ctp can be full web page without default.ctp view wrapper? same with other PHP frameworks…?

B.
What are CakePHP 3.2 conventions for a Town Directory Web-Site eg how name the tables and fields… if have

businesses/listings
id, user_id, cat_id, name, description, address, phone, email, url, Map_lat, Map_long, img1url, img2url, img3url

categories
id, cat

Users // this will be the same as Blog example in Guide
CREATE TABLE users (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50),
password VARCHAR(255),
role VARCHAR(20),
created DATETIME DEFAULT NULL,
modified DATETIME DEFAULT NULL
);

bake (pre-made code baking) should work, for first two tables…?..well?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.