| 12345678910111213141516 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class CustomField extends ModelExtended
- {
- protected $fillable=['table',
- 'field',
- 'present_name',
- 'authority_name',
- 'authority_id',
- 'condition_field',
- 'condition_value'];
- }
|