[Vuejs]-How to display relationship data in Laravel Inertia Vue 3?

0πŸ‘

βœ…

It was so simple. I found following solution. It worked perfectly.

<Table :resource="revenue">
         <template #cell(tax_name)="{ item: tax }">
                  {{tax.tax.tax_name}}
         </template>
 </Table>

Leave a comment