whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
app
/
Observers
/
Upload File:
files >> /home/kckglobal/public_html/portal/app/Observers/PromotionObserver.php
<?php namespace App\Observers; use App\Events\PromotionAddedEvent; use App\Models\Promotion; use App\Notifications\PromotionUpdated; use Illuminate\Support\Facades\Notification; use App\Models\Notification as ModelsNotification; class PromotionObserver { public function creating(Promotion $promotion) { if (company()) { $promotion->company_id = company()->id; } } public function created(Promotion $promotion) { if (!isRunningInConsoleOrSeeding() && $promotion->send_notification == 'yes') { event(new PromotionAddedEvent($promotion)); } } public function updated(Promotion $promotion) { if ($promotion->send_notification == 'yes' && ($promotion->isDirty('current_designation_id') || $promotion->isDirty('current_department_id'))) { $previousDesignationId = $promotion->getOriginal('current_designation_id'); $previousDepartmentId = $promotion->getOriginal('current_department_id'); Notification::send($promotion->employee, new PromotionUpdated($promotion, $previousDesignationId, $previousDepartmentId)); } } public function deleting(Promotion $promotion) { ModelsNotification::where('type', 'App\Notifications\PromotionAdded') ->whereNull('read_at') ->where(function ($q) use ($promotion) { $q->where('data', 'like', '{"id":' . $promotion->id . ',%'); })->delete(); } }
Copyright ©2021 || Defacer Indonesia