Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

Attribute [livewire] does not exist.

If you are using a recent install of Laravel 8,
you will have Livewire V2.
In this version, Route::livewire() romeved.
 Instead, you specify a normal get() route,
 with the action being the Livewire component class.
 
 
 Route::get('/' , AppHttpLivewireLandingPage::class);
 
PREVIOUS NEXT
Tagged: #Attribute
ADD COMMENT
Topic
Name
4+5 =