Send mail to admins
0
$admins = User::whereHas('groups', function($query) {
$query->where('code', 'owners');
})->get();
foreach ($admins as $admin) {
Mail::sendTo($admin->email, mailTemplate, $data);
}
$admins = User::whereHas('groups', function($query) {
$query->where('code', 'owners');
})->get();
foreach ($admins as $admin) {
Mail::sendTo($admin->email, mailTemplate, $data);
}
There are no comments yet
Be the first one to comment