nickolaich/nova-contact-form is a Laravel package for contact form for laravel nova.
It currently has 0 GitHub stars and 58 downloads on Packagist (latest version 0.0.2).
Install it with composer require nickolaich/nova-contact-form.
Discover more Laravel packages by nickolaich
or browse all Laravel packages to compare alternatives.
Last updated
Contact form data management for laravel nova projects
composer require nickolaich/nova-contact-form
php artisan vendor:publish --tag=nova-contact-form-config
This is what configuration file looks like:
return [
'api_prefix' => 'api/site',
'notifications' => [
'channels' => ['mail'],
'recipient_email'=>env('CONTACT_FORM_RECIPIENT_EMAIL', ''),
'recipient_name'=>env('CONTACT_FORM_RECIPIENT_NAME', 'Admin'),
]
];
For frontend, should install dependencies:
yarn install
Compiles and hot-reloads for development
yarn run serve