mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
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';
|
|
}
|
|
|
|
} |