Bristol SU Support Package
ActionInstanceField.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
11 class ActionInstanceField extends Model
12 {
13  use HasRevisions;
14 
20  protected $fillable = [
21  'action_value', 'action_field', 'action_instance_id'
22  ];
23 
29  public function actionInstance()
30  {
31  return $this->belongsTo(ActionInstance::class);
32  }
33 }