37 lines
904 B
PHP
37 lines
904 B
PHP
<?php
|
|
|
|
/**
|
|
* Created by Reliese Model.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Class Blacklist
|
|
*
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property string $content
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist query()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist whereContent($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Blacklist whereTitle($value)
|
|
*
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Blacklist extends Model
|
|
{
|
|
protected $table = 'blacklist';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'title',
|
|
'content',
|
|
];
|
|
}
|