You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
463 B
21 lines
463 B
<?php
|
|
|
|
namespace App\Documents;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Jenssegers\Mongodb\Eloquent\Model;
|
|
|
|
class FingerPrintDocument extends Model
|
|
{
|
|
use HasFactory, BaseDocument;
|
|
|
|
protected $connection = 'mongodb';
|
|
|
|
protected $fillable = ['user_id', 'agent', 'ip', 'os', 'city', 'country', 'token', 'expires_at'];
|
|
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(UserDocument::class, 'user_id', '_id');
|
|
}
|
|
}
|