|
@@ -268,6 +268,11 @@ class CompanyPanelProvider extends PanelProvider
|
268
|
268
|
{
|
269
|
269
|
$this->configureSelect();
|
270
|
270
|
|
|
271
|
+ Forms\Components\FileUpload::configureUsing(function (Forms\Components\FileUpload $component): void {
|
|
272
|
+ $component
|
|
273
|
+ ->hidden(is_demo_environment());
|
|
274
|
+ });
|
|
275
|
+
|
271
|
276
|
Actions\CreateAction::configureUsing(static fn (Actions\CreateAction $action) => FilamentComponentConfigurator::configureActionModals($action));
|
272
|
277
|
Actions\EditAction::configureUsing(static fn (Actions\EditAction $action) => FilamentComponentConfigurator::configureActionModals($action));
|
273
|
278
|
Actions\DeleteAction::configureUsing(static fn (Actions\DeleteAction $action) => FilamentComponentConfigurator::configureDeleteAction($action));
|