# fish: Unknown command: brew & Laravel installer

Si brew ne fonctionne plus sous fish: 
```fish
fish: Unknown command: brew
```
Excécuté la commande suivante:
```fish
fish_add_path /opt/homebrew/bin
echo "/opt/homebrew/bin/fish" | sudo tee -a /etc/shells
chsh -s /opt/homebrew/bin/fish
```

[stackoverflow](https://stackoverflow.com/questions/66724016/my-fish-is-blind-fish-does-not-recognise-any-commands-after-setting-it-as-defa)
## Laravel intaller
Pour installer laravel installer on procéde comme suit:
```fish
composer global require laravel/installer
fish_add_path /opt/homebrew/bin
```