| 1234567891011121314151617 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelLogChanging;
- class ErrorTemp extends Model
- {
- use ModelLogChanging;
- protected $fillable=[
- "position","title","content","created_at"
- ];
- public $timestamps=false;
- }
|