32 lines
514 B
PHP
32 lines
514 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WorkflowDocumentUser extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'workflow_document_users';
|
|
|
|
protected $fillable = [
|
|
'workflow_document_id',
|
|
'user_id',
|
|
'user_type',
|
|
'user_name',
|
|
'user_email',
|
|
'user_role',
|
|
'user_department',
|
|
'status',
|
|
'is_read',
|
|
'added_by',
|
|
'is_approved',
|
|
'process_id',
|
|
'promotion_id',
|
|
];
|
|
}
|