| 1 | <?php |
||
| 11 | class Transition extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | public $table = "fl_flows_steps_transitions"; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | public $fillable = ['flow_id', 'step_from_id', 'step_to_id']; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The flow this transition belongs to |
||
| 25 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 26 | */ |
||
| 27 | public function flow() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * The step this transition comes from |
||
| 34 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 35 | */ |
||
| 36 | public function from() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * The step this transition goes to |
||
| 43 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 44 | */ |
||
| 45 | public function to() |
||
| 49 | } |
||
| 50 |