first commit
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
Kevin Adametz 2025-10-20 17:53:02 +02:00
commit 405df0a122
3083 changed files with 69203 additions and 0 deletions

35
dev/Models/Blacklist.php Normal file
View 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'
];
}