21 lines
396 B
PHP
21 lines
396 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class Notification extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* The table associated with the model.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
protected $table = 'notifications';
|
||
|
|
protected $fillable = ['type', 'notifiable_type', 'notifiable_id', 'workflow_document_id', 'data', 'read_at'];
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'data' => 'json'
|
||
|
|
];
|
||
|
|
}
|