You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* Base Model
|
|
* ---
|
|
* The base model provides a space to set attributes
|
|
* that are common to all models
|
|
*/
|
|
class Model extends \Leaf\Model {
|
|
// You can define methods here that would be used
|
|
// throughout your model classes
|
|
// public function someMethod() {}
|
|
}
|