Placeholder component with relationship
I'm trying to show all the value when user creating invoice in the wizard. user name is not showing. How can I show invoice belong to user?
Forms\Components\Wizard\Step::make('Reviews')
->schema([
Forms\Components\Placeholder::make('number')
->content(fn($get) => $get('number')),
Forms\Components\Placeholder::make('user') <-- not working give me null
->content(fn($get) => $get('name')),
Forms\Components\Placeholder::make('note')
->content(
fn($get)
=> new HtmlString($get('note'))
),
]),