mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
9 lines
141 B
PHP
9 lines
141 B
PHP
|
<?php
|
||
|
namespace PonePaste\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class IPBan extends Model {
|
||
|
protected $table = 'ban_user';
|
||
|
}
|