Archived
1
0
Fork 0

app/Http/Livewire/Form/ModelForm.php: Translate flash messages.

This commit is contained in:
Henrik Hautakoski 2022-01-09 11:39:37 +01:00
parent 4b86674ac7
commit 64bfcc71e1

View file

@ -57,10 +57,10 @@ abstract class ModelForm extends Component
if ($this->isNew()) {
return redirect()->route($this->redirect_route)
->with('info', "{$this->getModelName()} was successfully created.");
->with('info', __("{$this->getModelName()} was successfully created."));
}
$this->info("{$this->getModelName()} was successfully updated.");
$this->info(__("{$this->getModelName()} was successfully updated."));
}
/**