CustomField.php 288 B

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