Files
izyim/app/Notifications/AbstractEmail.php
T
2019-03-19 17:11:21 +08:00

15 lines
188 B
PHP
Executable File

<?php
namespace App\Notifications;
use Illuminate\Notifications\Notification;
class AbstractEmail extends Notification
{
public function via()
{
return 'mail';
}
}