[logs] ┌ 14:04:13 WARNING ────────────────────────────────────────────────────────────┐
[logs] │ Creation of dynamic property App\Livewire\Something\Show::$relation is deprecated in... │
If you’re using Laravel Livewire to easily set up pagination , but running your application on PHP 8.2 or newer, your logs will be polluted with warnings. To fix this, simply add #[AllowDynamicProperties]
to your Component and these logs will be silenced.
#[\AllowDynamicProperties]
class Show extends Component
{
I’ve made a PR to add this to Livewire itself so this depreciation notice can hopefully be nixed.