dd/app/Models/ArticleCache.php
2025-10-21 14:51:14 +08:00

25 lines
439 B
PHP
Executable File

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