PHPackages                             webbi/webbi-contactform - 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. webbi/webbi-contactform

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

webbi/webbi-contactform
=======================

A contact form package for laravel

01PHP

Since Nov 7Pushed 6y ago1 watchersCompare

[ Source](https://github.com/akashwebbions/Webbi)[ Packagist](https://packagist.org/packages/webbi/webbi-contactform)[ RSS](/packages/webbi-webbi-contactform/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Webbi
=====

[](#webbi)

How to create and publish a Laravel package on packagist
========================================================

[](#how-to-create-and-publish-a-laravel-package-on-packagist)

A Laravel package is a set of reusable classes created to add extra functionality to a Laravel website. In clearer terms, a package is to Laravel, what plugins are to WordPress. The primary goal of Laravel packages is to reduce development time by making reusable features into a set of standalone classes that can be used within any Laravel project.

[View tutorial](https://pusher.com/tutorials/publish-laravel-packagist)

Getting Started
---------------

[](#getting-started)

- Create a fresh laravel package

```
composer create-project --prefer-dist laravel/laravel packagetestapp

```

- change directory to the new folder

```
cd packagetestapp

```

- When it's done you need to configure your env file and set your app key and other necessary details. In your terminal type:

```
cp .env.example .env

```

- generate the app key

```
php artisan key:generate

```

- create a folder called `packages`, then create a new folder called samuelayo.

> Note that you can subtitute samuelayo with your own vendor name. Be sure to change the refrence in every other aspect of the app

- clone this repository to the newly created folder

```
git clone https://github.com/samuelayo/contact-form-package.git packages/samuelayo/contactform

```

- Tell Laravel how to load our package and use it's functions, so inside the root of your Laravel app in the composer.json add this code:

```

"autoload": {
        "classmap": [
            "database/seeds",
            "database/factories"
        ],
        "psr-4": {
            "Webbi\\WebbiContactform\\": "packages/samuelayo/WebbiContactform/src",
            "App\\": "app/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Webbi\\WebbiContactform\\": "packages/samuelayo/WebbiContactform/src",
            "Tests\\": "tests/"
        }
    },

```

- Dump the composer autoloader

```
composer dump-autoload

```

- Next, we need to add our new Service Provider in our `config/app.php` inside the `providers` array:

```
'providers' => [
         ...,
            App\Providers\RouteServiceProvider::class,
            // Our new package class
            Webbi\WebbiContactform\ContactFormServiceProvider::class,
        ],

```

- Migrate the database tables

```
php artisan migrate

```

And finally, start the application by running:

```
php artisan serve

```

Visit  in your browser to view the demo.

If you want to include the project as a package to your app, run:

```
composer require webbi/webbi-contactform

```

Built With
----------

[](#built-with)

- [Laravel](https://laravel.com/) - The PHP framework for web artisans.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 76.5% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/d810a5afbeafdba31643aa1b2194e925772df0809ff95e25c7b7a988088c5c7d?d=identicon)[akashwebbions](/maintainers/akashwebbions)

---

Top Contributors

[![akashwebbions](https://avatars.githubusercontent.com/u/44671346?v=4)](https://github.com/akashwebbions "akashwebbions (13 commits)")[![mabmrudul](https://avatars.githubusercontent.com/u/19603752?v=4)](https://github.com/mabmrudul "mabmrudul (4 commits)")

### Embed Badge

![Health badge](/badges/webbi-webbi-contactform/health.svg)

```
[![Health](https://phpackages.com/badges/webbi-webbi-contactform/health.svg)](https://phpackages.com/packages/webbi-webbi-contactform)
```

###  Alternatives

[kubotak-is/php-del

Tool to remove code based on specific comments.

1640.8k](/packages/kubotak-is-php-del)

PHPackages © 2026

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