You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Events\BusinessUserCreate;
|
|
use App\Models\Business;
|
|
use App\Models\User;
|
|
use App\Notifications\DBNotification;
|
|
use App\Notifications\MailNotification;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
class BusinessUserCreateNotif
|
|
{
|
|
/**
|
|
* Create the event listener.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the event.
|
|
*
|
|
* @param BusinessUserCreate $event
|
|
* @return void
|
|
*/
|
|
public function handle(BusinessUserCreate $event)
|
|
{
|
|
$payload = $event->message;
|
|
$new_user = User::findOrFail($payload->data->original->user_id);
|
|
$owners = Business::findOrFail($payload->business)->owners()->where('id', '!=', $new_user->id)->get();
|
|
|
|
$notif = [
|
|
'body' => __('notification.'.$payload->data->table_name.'.'.enum('cruds.inverse.'.$payload->data->crud_id.'.singular_name'), ['business' => request('_business_info')['name'], 'user' => $new_user->name])
|
|
];
|
|
|
|
$users = $owners->prepend($new_user);
|
|
Notification::send($users, new MailNotification($notif));
|
|
Notification::send($users, new DBNotification($notif));
|
|
}
|
|
}
|