dd/app/Models/ArticleTemplateFreenode.php
2026-02-12 17:27:01 +08:00

25 lines
464 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ArticleTemplateFreenode extends Model
{
protected $table = 'article_template_freenode';
// public $timestamps = false;
// public static function _listKey()
// {
// $aSelf = self::all()->toArray();
//
// foreach ($aSelf as &$aSelfRow) {
// unset($aSelfRow["content"]);
// }
//
// return $aSelf;
// }
}