mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
8a28eb1790
This reverts merge request !5
15 lines
188 B
PHP
15 lines
188 B
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class AbstractEmail extends Notification
|
|
{
|
|
|
|
public function via()
|
|
{
|
|
return 'mail';
|
|
}
|
|
|
|
} |