mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
19 lines
313 B
PHP
19 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Classes\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class AbstractEmail extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
public function via()
|
|
{
|
|
return 'mail';
|
|
}
|
|
|
|
}
|