Skip to content

Commit

Permalink
Fixes unhandled match case error (#1513)
Browse files Browse the repository at this point in the history
* Fix unhandled match case error

* remove unneeded match option

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
  • Loading branch information
inmanturbo and taylorotwell authored Jul 10, 2024
1 parent f5a6bb4 commit 0eecfe8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
$width = match ($width) {
'48' => 'w-48',
'60' => 'w-60',
default => 'w-48',
};
@endphp

Expand Down

0 comments on commit 0eecfe8

Please sign in to comment.