mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 12:34:24 +00:00
15 lines
196 B
PHP
15 lines
196 B
PHP
<?php
|
|
|
|
namespace App\Classes\Notifications;
|
|
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class AbstractEmail extends Notification
|
|
{
|
|
|
|
public function via()
|
|
{
|
|
return 'mail';
|
|
}
|
|
|
|
} |