26 lines
461 B
PHP
26 lines
461 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class WorkflowDocumentSender extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The table associated with the model.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $table = 'workflow_document_senders';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'workflow_document_id',
|
||
|
|
'contact_id',
|
||
|
|
'contact_organization_name',
|
||
|
|
'contact_alternative_name',
|
||
|
|
'contact_address',
|
||
|
|
'contact_telephone_number',
|
||
|
|
'status',
|
||
|
|
];
|
||
|
|
}
|