<?php
namespace App\Notifications;
use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Notifiable;
abstract class WaNotification extends Notification
{
abstract public function toWa($notifiable);
}