RelationManager Create Action shows black overlay

public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('name')
->required()
->label('Authorization name')
->hint('Access reference')
->rule(function ($get) {
return Rule::unique('org_library_access_authorizations', 'name')
->whereNull('deleted_at')
->where('organization_id', $this->ownerRecord->id)
->ignore($get('id'));
}),
TextInput::make('api_endpoint_url')
->url()
->required()
->label('API Endpoint URL')
->dehydrateStateUsing(fn($state) => rtrim($state, '/') . '/')
->hint('Must start with http and end with /'),
TextInput::make('shared_key')
->required()
->hint('Used to sign HMAC code'),
TextInput::make('content_library_identifier')
->required()
->hint('Referenced content library'),
Toggle::make('is_active')
->default(true)
->label('Active')
]);
}
}
public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('name')
->required()
->label('Authorization name')
->hint('Access reference')
->rule(function ($get) {
return Rule::unique('org_library_access_authorizations', 'name')
->whereNull('deleted_at')
->where('organization_id', $this->ownerRecord->id)
->ignore($get('id'));
}),
TextInput::make('api_endpoint_url')
->url()
->required()
->label('API Endpoint URL')
->dehydrateStateUsing(fn($state) => rtrim($state, '/') . '/')
->hint('Must start with http and end with /'),
TextInput::make('shared_key')
->required()
->hint('Used to sign HMAC code'),
TextInput::make('content_library_identifier')
->required()
->hint('Referenced content library'),
Toggle::make('is_active')
->default(true)
->label('Active')
]);
}
}
No description
5 Replies
Zakhaev
Zakhaev2mo ago
@Mohammed Ouda did you fix this ? i got the same problem
GrandadEvans
GrandadEvans2mo ago
Me too For me: The following fixed: Composer update // updated to 3.2.130 on 2024-12-22 php artisan optimize:clear php artisan optimize I assume I have to let the OP ( @Mohammed Ouda ) mark it as fixed/solution
Zakhaev
Zakhaev5w ago
I will check if this helps, thank for the answer tho!
rubendn
rubendn4w ago
Updating to 3.2.131 fixed the same issue I was having.
toeknee
toeknee4w ago
Please ensure as per the #✅┊rules you update composer first. This looks like the Livewire Bug.

Did you find this page helpful?