Skip to content

Commit

Permalink
Update dev dependencies (#1283)
Browse files Browse the repository at this point in the history
* update dependencies

* wip
  • Loading branch information
luanfreitasdev committed Dec 6, 2023
1 parent 0c5f25c commit f14b50f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"laravel/prompts": "^0.1.13"
},
"require-dev": {
"pestphp/pest": "^2.24.3",
"pestphp/pest": "^2.26",
"orchestra/testbench": "^8.14.1",
"composer/composer": "^2.6.5",
"laravel/pint": "^1.13.6",
"laravel/pint": "^1.13",
"laradumps/laradumps-core": "^0.3.0",
"spaze/phpstan-disallowed-calls": "^2.16.1",
"larastan/larastan": "^2.7"
Expand Down
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions resources/views/components/row.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
])

@includeWhen($radio, 'livewire-powergrid::components.radio-row', [
'attribute' => data_get($row, $radioAttribute),
'attribute' => $row->{$radioAttribute},
])

@includeWhen($checkbox, 'livewire-powergrid::components.checkbox-row', [
'attribute' => data_get($row, $checkboxAttribute),
'attribute' => $row->{$checkboxAttribute},
])

@foreach ($this->visibleColumns as $column)
Expand Down

0 comments on commit f14b50f

Please sign in to comment.