1. Go to this page and download the library: Download notifea/notifea-php-laravel 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/ */
class UserController
{
public function sendEmail(Request $request, EmailService $emailService)
{
// .. your business logic
$email = new Email();
// ...
$sentEmail = $emailService->sendEmail($email);
}
public function sendSms(Request $request, SmsService $smsService)
{
// .. your business logic
$sms = new Sms();
// ...
$sentSms = $smsService->sendSms($sms);
}
public function createSmsSender(Request $request, SmsSenderService $smsSenderService)
{
// .. your business logic
$smsSender = new SmsSender();
// ...
$createdSmsSender = $smsSenderService->createSmsSender($smsSender);
}
}