service-captcha/app/Models/CaptchaToken.php
Leonid Nikitin 27046e6674
Revived API /api/v1/captcha.
Now a new captcha is created to check for a bot.
2023-09-19 14:27:33 +06:00

40 lines
809 B
PHP

<?php declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
final class CaptchaToken extends Model
{
use HasFactory, SoftDeletes;
protected $table = 'captcha_tokens';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'title',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'public_token',
'private_token',
];
public function captchas(): HasMany
{
return $this->hasMany(Captcha::class);
}
}