mirror of
https://github.com/anonaddy/anonaddy
synced 2026-05-05 14:42:09 +02:00
24 lines
354 B
PHP
24 lines
354 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use App\Traits\HasEncryptedAttributes;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DeletedUsername extends Model
|
|
{
|
|
use HasEncryptedAttributes;
|
|
|
|
public $incrementing = false;
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $encrypted = [
|
|
'username'
|
|
];
|
|
|
|
protected $fillable = [
|
|
'username'
|
|
];
|
|
}
|