Laravel Livewire Tables Documentation

🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.

This is the documentation for v3. You can switch versions in the menu at the top. Check your current version with the following command:

composer show rappasoft/laravel-livewire-tables

Array Columns (beta)

Array columns provide an easy way to work with and display an array of data from a field.

1ArrayColumn::make('notes', 'name')
2 ->data(fn($value, $row) => ($row->notes))
3 ->outputFormat(fn($index, $value) => "<a href='".$value->id."'>".$value->name."</a>")
4 ->separator('<br />')
5 ->sortable(),

Empty Value

You may define the default/empty value using the "emptyValue" method

1ArrayColumn::make('notes', 'name')
2 ->emptyValue('Unknown'),

Please also see the following for other available methods: