ok

Mini Shell

Direktori : /home2/selectio/www/fms-worksuite/app/Observers/
Upload File :
Current File : //home2/selectio/www/fms-worksuite/app/Observers/PinnedObserver.php

<?php

namespace App\Observers;

use App\Models\Pinned;

class PinnedObserver
{

    public function saving(Pinned $pinned)
    {
        // Cannot put in creating, because saving is fired before creating. And we need company id for check bellow
        if (user()) {
            $pinned->user_id = user()->id;
        }
    }

    public function creating(Pinned $pinned)
    {
        if (company()) {
            $pinned->company_id = company()->id;
        }
    }

}

Zerion Mini Shell 1.0