PHP code example of technicalsimple / contact
1. Go to this page and download the library: Download technicalsimple/contact library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
technicalsimple / contact example snippets
'providers' => [
...
/**
* Third Party Service Providers...
*/
\technicalsimple\Contact\ContactServiceProvider::class,
],
php artisan vendor:publish --provider="technicalsimple\Contact\ContactServiceProvider"
return [
'admin' => 'Admin', // admin name
'send_email_to' => '[email protected]', //admin email
];
php artisan migrate