namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
use Karlos3098\SimplyConnectLaravelNotifications\Interfaces\SimplyConnectNotification;
use Karlos3098\SimplyConnectLaravelNotifications\Services\SimplyConnectMessage;
class TestNotification extends Notification implements SimplyConnectNotification
{
use Queueable;
/**
* Create a new notification instance.
*/
public function __construct()
{
}
/**
* Get the notification's delivery channels.
*
* @return array<int, string>
*/
public function via(object $notifiable): array
{
return ['simply-connect', 'mail'];
}
/**
* Get the mail representation of the notification.
*/
public function toMail(object $notifiable): MailMessage
{
return (new MailMessage)->line('Example Email');
}
/**
* Get the array representation of the notification.
*
* @return array<string, mixed>
*/
public function toArray(object $notifiable): array
{
return [
];
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->text("Example SMS message");
}
}
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Notifications\Notification;
use Karlos3098\SimplyConnectLaravelNotifications\Interfaces\HasDifferentPhoneNumberForSimplyConnect;
class User extends Authenticatable implements HasDifferentPhoneNumberForSimplyConnect
{
use HasFactory, Notifiable;
public function routeNotificationForSimplyConnect(Notification $notification): array|string|null
{
return $this->phone_number; //or whatever you want
}
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
];
}
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->phoneNumber("+48123456789")
->text("Example SMS message");
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->phoneNumber("+48123456789", "+48222222222", /* ... */)
->text("Example SMS message");
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->phoneNumber("+48123456789")
->line("Line 1")
->line("Line 2")
->breakLine()
->line("Line by blank line");
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->callback(function(int $messageId) {
//...
})
->text("Example SMS message");
}
namespace App\Http\Controllers;
use Illuminate\Http\JsonResponse;
use Karlos3098\SimplyConnectLaravelNotifications\Facades\MessageDetails;
class MessageController extends Controller
{
public function show(int $messageId): JsonResponse
{
$message = MessageDetails::getMessageById($messageId);
return response()->json($message);
}
}
public function toSimplyConnect(object $notifiable): SimplyConnectMessage
{
return (new SimplyConnectMessage)
->device(123123)
->token("other Bearer API token")
->text("Example SMS message");
}
$message = MessageDetails::setBearerToken("other Bearer API token")->getMessageById($messageId);