PHPackages                             sukohi/form-autocomplete - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. sukohi/form-autocomplete

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

sukohi/form-autocomplete
========================

A PHP package mainly developed for Laravel to generate form input tags of Bootstrap that can automatically display errors, labels and alerts.

2.0.0(10y ago)18891[1 issues](https://github.com/SUKOHI/FormAutocomplete/issues)MITPHP

Since Aug 31Pushed 9y ago1 watchersCompare

[ Source](https://github.com/SUKOHI/FormAutocomplete)[ Packagist](https://packagist.org/packages/sukohi/form-autocomplete)[ RSS](/packages/sukohi-form-autocomplete/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (6)Used By (0)

FormAutocomplete
================

[](#formautocomplete)

A PHP package mainly developed for Laravel to generate javascript tag for auto-complete through jQuery UI.
(This is for Laravel 5+. [For Laravel 4.2](https://github.com/SUKOHI/FormAutocomplete/tree/1.0))

Installation
============

[](#installation)

Add this package name in composer.json

```
"require": {
  "sukohi/form-autocomplete": "2.*"
}

```

Execute composer command.

```
composer update

```

Register the service provider in app.php

```
'providers' => [
    ...Others...,
    Sukohi\FormAutocomplete\FormAutocompleteServiceProvider::class,
]

```

Also alias

```
'aliases' => [
    ...Others...,
    'FormAutocomplete'   => Sukohi\FormAutocomplete\Facades\FormAutocomplete::class
]

```

Requirement
===========

[](#requirement)

- [jQuery](https://jquery.com/)
- [jQuery UI](https://jqueryui.com/)

Usage
=====

[](#usage)

(in View)

```

    $(document).ready(function(){

        // Using Array

        {!! FormAutocomplete::selector('#title_1')->source(['aaaaa', 'bbbbb', 'cccccc']) !!}

        // Using Closure

        {!! FormAutocomplete::selector('#title_2')->source(function(){

            return \Item::where('id', '>', 2)->lists('title');  // You need to return array values.

        }) !!}

        // Using Table and column

        {!! FormAutocomplete::selector('#title_3')->db('items', 'title') !!}

    });

```

License
=======

[](#license)

This package is licensed under the MIT License.

Copyright 2015 Sukohi Kuhoh

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~78 days

Total

5

Last Release

3603d ago

Major Versions

1.0.0 → 2.0.02015-08-31

### Community

Maintainers

![](https://www.gravatar.com/avatar/2980d59b309d45df3f2e6e51b1d336614da063240b8f76f873f287cd745ec5db?d=identicon)[Sukohi](/maintainers/Sukohi)

---

Top Contributors

[![SUKOHI](https://avatars.githubusercontent.com/u/5362394?v=4)](https://github.com/SUKOHI "SUKOHI (1 commits)")

### Embed Badge

![Health badge](/badges/sukohi-form-autocomplete/health.svg)

```
[![Health](https://phpackages.com/badges/sukohi-form-autocomplete/health.svg)](https://phpackages.com/packages/sukohi-form-autocomplete)
```

###  Alternatives

[wireui/wireui

TallStack components

1.8k1.3M16](/packages/wireui-wireui)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4205.3M84](/packages/livewire-volt)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
