Files
faveo/app/Model/helpdesk/Workflow/WorkflowRules.php
Sujit Prasad 5327b0c0da update 1.0.7
2016-04-19 19:19:42 +05:30

13 lines
357 B
PHP

<?php
namespace App\Model\helpdesk\Workflow;
use Illuminate\Database\Eloquent\Model;
class WorkflowRules extends Model
{
public $timestamps = false;
protected $table = 'workflow_rules';
protected $fillable = ['id', 'workflow_id', 'matching_criteria', 'matching_scenario', 'matching_relation', 'matching_value', 'updated_at', 'created_at'];
}