PHP code example of notifea / notifea-php-laravel

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/ */

    

notifea / notifea-php-laravel example snippets


    'providers' => [
        /*
         * Laravel Framework Service Providers...
         */
        Notifea\Laravel\Providers\NotifeaServiceProvider::class,
    ];

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);
    }

}
shell script
composer 
shell script
php artisan vendor:publish --provider='Notifea\Laravel\Providers\NotifeaServiceProvider'