12 lines
228 B
PHP
Executable File
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;
|
|
}
|