mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
23 lines
364 B
PHP
23 lines
364 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RouteLog extends Model
|
|
{
|
|
protected $fillable = [
|
|
'user_id',
|
|
'ip_address',
|
|
'url',
|
|
'request_method',
|
|
'browser',
|
|
'platform',
|
|
'longitude',
|
|
'latitude',
|
|
'last_page',
|
|
'countryname',
|
|
'route_type'
|
|
];
|
|
}
|