anonaddy/app/DeletedUsername.php
2019-09-26 14:09:07 +01:00

25 lines
390 B
PHP

<?php
namespace App;
use App\Traits\HasEncryptedAttributes;
use Illuminate\Database\Eloquent\Model;
class DeletedUsername extends Model
{
use HasEncryptedAttributes;
public $incrementing = false;
protected $keyType = 'string';
public $timestamps = false;
protected $encrypted = [
'username'
];
protected $fillable = [
'username'
];
}