Form keep loading

I have one Form that's keep loading... finish with timeout.

This form is only to view information, so is a view.

I remove, all the RelationManager and on the form make simple a Select:
Select::make('contact_id')->label('Contact')
                         ->options(function (callable $get) {

                             return Contact::find($get('contact_id'))->pluck('email', 'id');
                         }),

the others fields are from the model.

I use MySQL and the table has 159736 records.

I have another thable with more records and don't have any problem.

How can i debug this?
Was this page helpful?