nikaia / nova-rating-field

A Star rating field to use in your Laravel Nova apps.
MIT License
41 stars 30 forks source link

How to display a calculated value as stars #2

Closed phuclh closed 4 years ago

phuclh commented 5 years ago

I need to display a star rating with an average rating, then I try to pass that average value into resolvingUsing or displayUsing function but it didn't work.

Rating::make('Rating')->resolveUsing(function ($name) {
                return $this->articles->avg('rating');
            })

How can I display a calculated value as stars (that data isn't a column in the table)

phuclh commented 5 years ago

@nbourguig do you have any ideas for that? Thank you.

nbourguig commented 4 years ago

Maybe related to #1, fixed in v1.0.2