kenprogrammer/contactform

A contact form package for laravel

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kenprogrammer/contactform

1.1 2023-09-12 12:11 UTC

This package is auto-updated.

Last update: 2025-12-12 17:02:16 UTC


README

Contact Form - My First Laravel Package

Tutorial

https://pusher.com/tutorials/publish-laravel-packagist/

Installation

Open your project in terminal and run the following command:

composer require kenprogrammer/contactform

Add the service provider in your config/app.php file:

'providers' => [
    // ...
    Kenprogrammer\Contactform\ContactFormServiceProvider::class,
];
  • Create your database and update .env with your databaser/server credentials accordingly
  • Run migration php artisan migrate

Usage