John Davidson

php artisan make:component not exist after upgrade from Laravel 6 to Laravel 9

0 comments
Message:


i have upgraded from laravel 6 to 7 then 8 then 9 and make:component command not exist how to update it ?




My Answer:
In Laravel 7 and above, the `make:component` command has been replaced with the `make:livewire` command for creating Livewire components. Livewire is a full-stack framework for Laravel that makes building dynamic interfaces simple.

To create a Livewire component, you can use the following command:


php artisan make:livewire ComponentName


Replace `ComponentName` with the name of your component. This will create a new Livewire component in the `app/Http/Livewire` directory.

If you still want to create a regular Blade component, you can manually create the component file in the `resources/views/components` directory and use it in your views.

For more information on using Livewire components in Laravel, you can refer to the official documentation: https://laravel-livewire.com/docs/2.x/quickstart

Rate this post

3 of 5 based on 1123 votes

Comments




© 2024 Hayatsk.info - Personal Blogs Platform. All Rights Reserved.
Create blog  |  Privacy Policy  |  Terms & Conditions  |  Contact Us