36 lines
615 B
PHP
36 lines
615 B
PHP
<?php
|
|
|
|
namespace App\Models\Reports;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Blacklist extends Model
|
|
{
|
|
// Table Name
|
|
protected $table = 'blacklist';
|
|
|
|
//Primary Key
|
|
public $primaryKey = 'id';
|
|
|
|
// Timestamps
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'entity_id',
|
|
'entity_name',
|
|
'entity_type',
|
|
'reason',
|
|
'lister_id',
|
|
'lister_name',
|
|
'state',
|
|
'removed_by_id',
|
|
'removed_by_name',
|
|
'removed_notes',
|
|
];
|
|
}
|