Nova: link to panel
I'm new with Nova. I want to add link to panel with some data in one of my resource grid. I have panel fields in my detail view:
public function fields(Request $request) { return [ ... new Panel('Calculation Method 1', $this->method1Fields()), new Panel('Calculation Method 2', $this->method2Fields()), new Panel('Calculation Method 3', $this->method3Fields()), ]; }
protected function method1Fields() { return [ AdvancedNumber::make('Average Turnaround Time', 'M1AVGTRT')->decimals(4)->hideFromIndex(), AdvancedNumber::make('Standard Deviation', 'M1STDTRT')->decimals(2)->hideFromIndex(), ... ]; }
Please or to participate in this conversation.