Files
omair saleh 8a28eb1790 Revert "Merge branch 'dashboardReport' into 'master'"
This reverts merge request !5
2019-03-19 09:57:38 +00:00

15 lines
188 B
PHP

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