@wilmer.lemke
In Laravel, if you need to edit a variable that is passed to an event, you can do so by creating and using a listener for that event. Below are the steps to achieve this:
1
|
php artisan make:listener YourListenerName |
This will create a new listener class in the App/Listeners
directory.
1 2 3 4 |
public function handle(YourEventName $event) { $event->yourVariable = // your modification logic here } |
1 2 3 4 5 |
protected $listen = [ YourEventName::class => [ YourListenerName::class, ], ]; |
By following these steps, you can edit a variable passed to an event in Laravel.