33 lines
498 B
PHP
33 lines
498 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class DbipLookup
|
|
*
|
|
* @property string $addr_type
|
|
* @property string $ip_start
|
|
* @property string $ip_end
|
|
* @property string $country
|
|
*
|
|
* @package App\Models
|
|
*/
|
|
class DbipLookup extends Model
|
|
{
|
|
protected $table = 'dbip_lookup';
|
|
public $incrementing = false;
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'addr_type',
|
|
'ip_start',
|
|
'ip_end',
|
|
'country'
|
|
];
|
|
}
|