first commit
This commit is contained in:
commit
405df0a122
3083 changed files with 69203 additions and 0 deletions
35
dev/Models/Blacklist.php
Normal file
35
dev/Models/Blacklist.php
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Created by Reliese Model.
|
||||
*/
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class Blacklist
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $title
|
||||
* @property string $content
|
||||
* @package App\Models
|
||||
* @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'
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue