Files
alliance-services/app/Models/Reports/Blacklist.php
2026-03-10 02:10:28 -05:00

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',
];
}