lms/app/Models/Subscribe.php
2025-12-15 12:26:23 +01:00

18 lines
259 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Subscribe extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'email',
];
}