|Banword newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Banword newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Banword query() * @method static \Illuminate\Database\Eloquent\Builder|Banword whereWord($value) * @mixin \Eloquent */ class Banword extends Model { /** * Indicates if the model should be timestamped. * * @var bool */ public $timestamps = false; /** * The table associated with the model. * * @var string */ protected $table = 'banword'; /** * The primary key for the model. * * @var string */ protected $primaryKey = 'word'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'word', ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ ]; }