SearchKeyword.php 378 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SearchKeyword extends Model
  5. {
  6. protected $table = 'tb_search_keyword';
  7. protected $primaryKey = 'id';
  8. public $keyType = 'int';
  9. public $incrementing = true;
  10. public $timestamps = false;
  11. const CREATED_AT = 'created_at';
  12. const UPDATED_AT = null;
  13. const DELETED_AT = null;
  14. }