Files
ntspi-app/app/Ship/Abstracts/Notifications/Notification.php
T
2026-03-20 21:47:02 +05:00

12 lines
228 B
PHP
Executable File

<?php
namespace App\Ship\Abstracts\Notifications;
use Illuminate\Notifications\Notification as LaravelNotification;
use Illuminate\Bus\Queueable;
abstract class Notification extends LaravelNotification
{
use Queueable;
}