shineirvin

Results 3 issues of shineirvin

Hi, I can't activity_task_schedule_to_start_latency metrics on php-sdk. Is it not implemented yet ? I heard the php-sdk is built on top of Go one. So it should be there. Could...

``` public function fields() { return [ DynamicSelect::make('Provider', 'provider') ->options((\App\Person::all()) ->rules('required') } ``` \App\Person::all() is causing N+1 Query, How do I prevent it ?

``` public function fields() { return [ Select::make('Provider', 'provider') ->options((\App\Person::all()) ->rules('required') } ``` \App\Person::all() is causing N+1 Query, How do I prevent it ?