dd/app/Models/ArticleOption.php
2025-10-20 19:17:03 +08:00

25 lines
443 B
PHP
Executable File

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