Files
izyim/app/Notifications/AbstractEmail.php
T
2019-02-14 11:43:19 +08:00

15 lines
188 B
PHP

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