ECOMMERCE/app/Notifications/WaNotification.php

13 lines
226 B
PHP

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