41 lines
982 B
PHP
41 lines
982 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Auth\Authenticatable;
|
||
|
use Laravel\Lumen\Auth\Authorizable;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
||
|
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
|
||
|
|
||
|
class Invite extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The attributes that are mass assignable.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $fillable = [
|
||
|
'user_id', 'username', 'code', 'comment', 'status'
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* The attributes excluded from the model's JSON form.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $hidden = [
|
||
|
'validation_code',
|
||
|
];
|
||
|
|
||
|
public function createToken() {
|
||
|
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||
|
$randstring = '';
|
||
|
for ($i = 0; $i < 20; $i++) {
|
||
|
$randstring .= $characters[rand(0, strlen($characters)-1)];
|
||
|
}
|
||
|
$this->code = $randstring;
|
||
|
}
|
||
|
|
||
|
}
|