Model

Simpliest use of Model 

This file defines the Model class, which serves as the foundation for representing and interacting with data in your MVC application. It provides various methods for database operations, including:

Create a new file named like Contacts.php in the App/Models directory.

The changes made are:


<?php

class Contact extends Model {

  public static $_Table = 'Contacts';

  public static $_ID = 'ID';

  public static $_Trash = 'Deleted'; // if required, Int 1 default 0

  public static $_TrashAt = 'DeletedAt'; // if required, Int 11 default null

}

?>


Properties

Methods

Usage

Inherit from the Model class to create specific model classes representing your database tables. Each model class should implement the abstract methods (PrimaryKey()) and may optionally override functionalities like TrashKey() and TrashAtKey() for soft deletion handling.