asantibanez / livewire-calendar

Laravel Livewire component to show Events in a good looking monthly calendar
MIT License
904 stars 233 forks source link

Class "Asantibanez\LivewireCalendar\LivewireCalendar" not found #38

Open Deniz073 opened 2 years ago

Deniz073 commented 2 years ago

Im getting an Class "Asantibanez\LivewireCalendar\LivewireCalendar" not found from vscode when running the application, but my ide does recognize the class. Dont know how to fix it. It is a fresh laravel 9 application and to use this package i used the workaround https://github.com/asantibanez/livewire-calendar/issues/32#issuecomment-1150032111 mentioned here.

image

roomdada commented 2 years ago

Hi I solved the problem by adding to config/app.php add these lines : providers : \AsantibanezLivewireCalendarLivewireCalendarServiceProvider::class

alias : "LivewireCalendar" => \Asantibanez\LivewireCalendar\LivewireCalendarFacade::class,

Then open your composer.json file at autoload level and add this line "Asantibanez\LivewireCalendar": "vendor/asantibanez/livewire-calendar/src/"