19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Condition extends Model
|
|
{
|
|
protected $table = 'condition';
|
|
protected $guarded = ['id'];
|
|
protected $with = 'actions';
|
|
|
|
public function actions()
|
|
{
|
|
return $this->hasMany('App\Models\Action','condition_id','id')->orderBy('sort')->orderBy('id');
|
|
}
|
|
|
|
}
|