Edit File: TranslationHasBeenSetEvent.php
<?php namespace Spatie\Translatable\Events; class TranslationHasBeenSetEvent { public function __construct( public mixed $model, public string $key, public string $locale, public mixed $oldValue, public mixed $newValue, ) { // } }
Back to File Manager