Config.php 334 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 系统配置.
  6. */
  7. class Config extends Model
  8. {
  9. public $timestamps = false;
  10. public $incrementing = false;
  11. protected $table = 'config';
  12. protected $primaryKey = 'name';
  13. protected $keyType = 'string';
  14. protected $fillable = ['value'];
  15. }