mivita/app/Models/DbipLookup3.php
Kevin Adametz bfa3bb1df4 08 2024
2024-08-05 12:05:24 +02:00

33 lines
501 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 DbipLookup3 extends Model
{
protected $table = 'dbip_lookup_3';
public $incrementing = false;
public $timestamps = false;
protected $fillable = [
'addr_type',
'ip_start',
'ip_end',
'country'
];
}