Amro Khaled
Amro Khaled
@giggsey Yes, I am doing this now. Thanks for the tip.
I will try find a solution and open PR for it
```php public function options($searchTerm = null) : Collection { return App\Models\Plan::get(['id', 'name'])->mapWithKeys(function ($item, $key) { return [$key => [ 'value' => $item->id, 'description' => $item->name ]]; }); } ```
I add clear it manually in my code: `notifyContainer.html('')`
@jessarcher Can we have a flag like `DISABLE_ARTISAN_SAIL` ? here: ```sh if [ "$docker_compose_config_path" = '' || $DISABLE_ARTISAN_SAIL ]; then ``` and usage ```sh DISABLE_ARTISAN_SAIL=true artisan ```