daikazu/simple-contact-form is a Laravel package for a simple contact form.
It currently has 0 GitHub stars and 331 downloads on Packagist (latest version v1.1.2).
Install it with composer require daikazu/simple-contact-form.
Discover more Laravel packages by daikazu
or browse all Laravel packages to compare alternatives.
Last updated
Package description: CHANGE ME
Install via composer
composer require daikazu/simple-contact-form
Note! This and next step are optional if you use laravel>=5.5 with package auto discovery feature.
Add service provider to config/app.php in providers section
Daikazu\SimpleContactForm\ServiceProvider::class,
Register package facade in config/app.php in aliases section
Daikazu\SimpleContactForm\Facades\SimpleContactForm::class,
php artisan vendor:publish --provider="Daikazu\SimpleContactForm\ServiceProvider" --tag="simple-contact-form-config"
/resource/views/vendor/ folderphp artisan vendor:publish --provider="Daikazu\SimpleContactForm\ServiceProvider" --tag="simple-contact-form-views"
Migrate contact_us table
php artisan migrate
@include('simple-contact-form::form')
If you discover any security related issues, please email instead of using the issue tracker.
This package is bootstrapped with the help of melihovv/laravel-package-generator.