File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
resources/views/tailwind/includes Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class="rounded-md shadow-sm border-cool-gray-300 block transition duration-150 e
80
80
</x-livewire-tables::table .cell >
81
81
@endif
82
82
83
- @include ($rowsView , [' row' => $row ] )
83
+ @include ($rowView , [' row' => $row ] )
84
84
</x-livewire-tables::table .row >
85
85
@empty
86
86
<x-livewire-tables::table .row >
Original file line number Diff line number Diff line change @@ -170,10 +170,12 @@ public function getRowsProperty(): LengthAwarePaginator
170
170
public function render ()
171
171
{
172
172
return view ('livewire-tables:: ' .config ('livewire-tables.theme ' ).'.datatable ' )
173
- ->withColumns ($ this ->columns ())
174
- ->withRowsView ($ this ->rowView ())
175
- ->withFiltersView ($ this ->filtersView ())
176
- ->withCustomFilters ($ this ->filters ())
177
- ->withRows ($ this ->rows );
173
+ ->with ([
174
+ 'columns ' => $ this ->columns (),
175
+ 'rowView ' => $ this ->rowView (),
176
+ 'filtersView ' => $ this ->filtersView (),
177
+ 'customFilters ' => $ this ->filters (),
178
+ 'rows ' => $ this ->rows ,
179
+ ]);
178
180
}
179
181
}
You can’t perform that action at this time.
0 commit comments