mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 11:09:27 +00:00
18 lines
240 B
PHP
18 lines
240 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 邮箱后缀过滤.
|
|
*/
|
|
class EmailFilter extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $table = 'email_filter';
|
|
|
|
protected $guarded = [];
|
|
}
|