Open drsdre opened 5 years ago
I'm trying to setup a relationship between a league and a competition_matchday, for it fails when BelongsTo is set as searchable. I'm guessing this is because searchable is not a regular dropdown.
BelongsTo::make( 'League', 'league', League::class ) ->nullable() ->searchable(), AjaxSelect::make( 'Matchday', 'competition_matchday' ) ->nullable() ->get( '/api/league/{league}/matchdays' ) ->parent( 'league' ),
Can confirm this
I'm trying to setup a relationship between a league and a competition_matchday, for it fails when BelongsTo is set as searchable. I'm guessing this is because searchable is not a regular dropdown.