Files
w4rpservices/app/Models/Charcter/BlacklistUser.php
2019-12-01 02:10:33 -06:00

29 lines
474 B
PHP

<?php
namespace App\Models\Character;
use Illuminate\Database\Eloquent\Model;
class BlacklistUser extends Model
{
//Table Name
public $table = 'blacklisted_characters';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'name',
'reason',
'alts',
'lister_id',
'lister_name',
];
}