<?php

namespace App\Http\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class WebmasterCountry extends Model
{
    use SoftDeletes;
    protected $table = 'webmaster_country';
    protected $primaryKey = 'id';
    protected $guarded = [];
}