forYear(2026)->create([...]) */ class MemLoginYear extends Model { protected $primaryKey = 'seq'; public $incrementing = true; protected $keyType = 'int'; protected $guarded = []; public function forYear(int $year): self { $this->setTable('mem_login_' . $year); return $this; } }