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