a314ac99ef
Initial v2 commit Laravel project
18 lines
556 B
PHP
18 lines
556 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Reseller extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'reseller_hosting';
|
|
|
|
protected $fillable = ['id', 'active', 'accounts', 'main_domain', 'has_dedicated_ip', 'ip', 'reseller_type', 'provider_id', 'location_id', 'bandwidth', 'disk', 'disk_type', 'disk_as_gb', 'domains_limit', 'subdomains_limit', 'ftp_limit', 'email_limit', 'db_limit', 'was_promo', 'owned_since'];
|
|
|
|
public $incrementing = false;
|
|
}
|