1. Go to this page and download the library: Download macellan/ttmesaj 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/ */
use Carbon\Carbon;
use Illuminate\Notifications\Notification;
use Macellan\TTMesaj\TTMesajMessage;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return ['ttmesaj'];
}
public function toTTMesaj($notifiable)
{
return TTMesajMessage::create()
->setBody('Your account was approved!')
->setSendTime(Carbon::now())
->setEndTime(Carbon::now()->addDay());
}
}
public function routeNotificationForTTMesaj()
{
return str_replace(['+', ' '], '', $this->phone);
}