egorryaroslavl / contacts
Contact form
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Requires
- egorryaroslavl/admin: ^1.0.5
- intervention/image: ^2.3
- laravelcollective/html: ^5.3.0
This package is auto-updated.
Last update: 2025-03-07 03:38:23 UTC
README
Installation
composer require "egorryaroslavl/contacts":"1.0.2"
Then add ServiceProviders
'providers' => [
// ...
Egorryaroslavl\Contacts\ContactsServiceProvider::class,
Collective\Html\HtmlServiceProvider::class,
Intervention\Image\ImageServiceProvider::class,
// ...
],
and aliases
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'Image' => Intervention\Image\Facades\Image::class,
// ...
],
and run this
php artisan vendor:publish
And after all, run this...
php artisan migrate