| 12345678910111213141516171819 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class SearchKeyword extends Model
- {
- protected $table = 'tb_search_keyword';
- protected $primaryKey = 'id';
- public $keyType = 'int';
- public $incrementing = true;
- public $timestamps = false;
- const CREATED_AT = 'created_at';
- const UPDATED_AT = null;
- const DELETED_AT = null;
- }
|