This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

33
app/Models/DbipLookup.php Normal file
View 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 DbipLookup extends Model
{
protected $table = 'dbip_lookup';
public $incrementing = false;
public $timestamps = false;
protected $fillable = [
'addr_type',
'ip_start',
'ip_end',
'country'
];
}