mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 20:44:04 +00:00
19 lines
259 B
PHP
19 lines
259 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserVerification extends Model
|
|
{
|
|
protected $fillable = [
|
|
'token'
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('App\User', 'user_id');
|
|
}
|
|
|
|
}
|