diff --git a/app/Http/Livewire/Recipes.php b/app/Http/Livewire/Recipes.php index 9cad6a7..62312e8 100644 --- a/app/Http/Livewire/Recipes.php +++ b/app/Http/Livewire/Recipes.php @@ -46,7 +46,7 @@ class Recipes extends Component return [Str::lower($item['name']) => $item['name']]; }); - $this->profession_options = collect(['' => '-- Profession --']) + $this->profession_options = collect(['' => '-- ' . __('Profession') . ' --']) ->merge($options) ->toArray(); }