php TextColumn::make('executor.name')
->label('Executor')
->action(ViewAction::make('viewExecutioner')
->model(UserResource::getModel())
->record(fn (Execution $record): User => $record->executor)
->schema(UserResource::form(new Schema())->getComponents()) // ignore the schema, i do not build yet
)
->html()
->sortable(),
php TextColumn::make('executor.name')
->label('Executor')
->action(ViewAction::make('viewExecutioner')
->model(UserResource::getModel())
->record(fn (Execution $record): User => $record->executor)
->schema(UserResource::form(new Schema())->getComponents()) // ignore the schema, i do not build yet
)
->html()
->sortable(),