- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Ship\Abstracts\Notifications;
|
|
|
|
use Illuminate\Notifications\Notification as LaravelNotification;
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
abstract class Notification extends LaravelNotification
|
|
{
|
|
use Queueable;
|
|
}
|