Select Column relationship in Table.
I'm currently populating the select using the options closure:
But do we have a way to access a relationship like as in the Form Builder?:
Is there a better way to do this?
Solution:Jump to solution
There doesn't seem to be an available relationship. You could continue using the 'options' method
```php
SelectColumn::make('currency_id')
->options(Currency::pluck('name', 'id'))...
1 Reply
Solution
There doesn't seem to be an available relationship. You could continue using the 'options' method