08 2024
This commit is contained in:
parent
04d677d37a
commit
bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions
33
app/Models/DbipLookup3.php
Normal file
33
app/Models/DbipLookup3.php
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<?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 DbipLookup3 extends Model
|
||||
{
|
||||
protected $table = 'dbip_lookup_3';
|
||||
public $incrementing = false;
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'addr_type',
|
||||
'ip_start',
|
||||
'ip_end',
|
||||
'country'
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue