手元でのテストを終えて、本番環境にデプロイしたら発生。
開発環境ではエラーが出ず、新規に構築した本番環境でも出ず、原因探しに苦労した。
結果、sharedの中のキャッシュが原因だった。
rm -f shared/bootstrap/cache/livewire-components.php
rm -rf shared/storage/framework/views/*
rm -rf shared/storage/framework/cache/*
rm -f shared/bootstrap/cache/*.php
このあたりを削除して解決。
php artisan view:clear
は実行していたのに。