We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a928621 + 92c663c commit f4018c9Copy full SHA for f4018c9
resources/views/livewire/datatables/checkbox.blade.php
@@ -3,7 +3,7 @@
3
type="checkbox"
4
wire:model="selected"
5
value="{{ $value }}"
6
- @if (in_array($value, $this->pinnedRecords)) checked @endif
+ @if (property_exists($this, 'pinnedRecords') && in_array($value, $this->pinnedRecords)) checked @endif
7
class="w-4 h-4 mt-1 text-blue-600 form-checkbox transition duration-150 ease-in-out"
8
/>
9
</div>
0 commit comments