Files
Paymenter-Version-Tracks/app/Models/UserAuthenticationLog.php
Muhammad Tamir b3933b9960 v1.4.0
2025-11-14 10:59:24 +07:00

22 lines
349 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserAuthenticationLog extends Model
{
protected $fillable = [
'user_id',
'ip_address',
];
/**
* Get the user that owns the authentication log.
*/
public function user()
{
return $this->belongsTo(User::class);
}
}