27 lines
411 B
PHP
27 lines
411 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SecurityAlert extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id',
|
|
'type',
|
|
'endpoint',
|
|
'payload',
|
|
'ip_address',
|
|
'user_agent',
|
|
];
|
|
|
|
protected $casts = [
|
|
'payload' => 'array',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|