NovaBelongsToDepend::make('Shows', 'shows', \App\Nova\Shows::class)
->placeholder('-- Select Show --') // Add this just if you want to customize the placeholder
->options(Shows::all())
->display(function($shows){
return $shows->title . ' - ' . $shows->en_title;
}),
I'm trying this but it's not showing display attribute content.