ErrorTemp.php 272 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class ErrorTemp extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $fillable=[
  9. "position","title","content","created_at"
  10. ];
  11. public $timestamps=false;
  12. }