Viewing File: /home/markqprx/iniasli.pro/app-20260222054312/Listeners/DetachDeletedCustomDomains.php

<?php

namespace App\Listeners;

use App\Models\Link;
use Common\Domains\DeletedCustomDomains;

class DetachDeletedCustomDomains
{
    public function handle(DeletedCustomDomains $event)
    {
        Link::whereIn('domain_id', $event->domainIds)->update(['domain_id' => null]);
    }
}
Back to Directory File Manager