DhammaTerm.php 450 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class DhammaTerm extends Model
  6. {
  7. use HasFactory;
  8. protected $primaryKey = 'guid';
  9. protected $casts = [
  10. 'guid' => 'string'
  11. ];
  12. public $incrementing = false;
  13. protected $fillable = ['id' , 'guid', 'word','word_en','meaning','channal','language','owner','editor_id','create_time','modify_time'];
  14. }