CustomField.php 341 B

1234567891011121314151617181920
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class CustomField extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $fillable=['table',
  9. 'field',
  10. 'present_name',
  11. 'authority_name',
  12. 'authority_id',
  13. 'condition_field',
  14. 'condition_value'];
  15. }