You can install the package via composer:
composer require thomascombe/laravel-observer-attributes
You can publish the config file with:
php artisan vendor:publish --provider="Thomascombe\ObserverAttributes\ObserverAttributesServiceProvider" --tag="laravel-observer-attributes-config"
This is the contents of the published config file:
return [
'directories' => [
app_path('Models'),
],
];
Add single observer to model:
use App\Observers\UserObserver;
#[Observer(UserObserver::class)]
class User extends Authenticatable
{
}
It's just like:
User::observe(UserObserver::class);
in EventServiceProvider
Add multiples observers to model:
use App\Observers\EntityObserver;
use App\Observers\UserObserver;
#[Observer(UserObserver::class, EntityObserver::class)]
class User extends Authenticatable
{
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.