Laravel is currently one of the most widely promoted PHP frameworks. It features a large workforce and a vast knowledge base, including numerous articles, video tutorials, and comprehensive documentation.
Professional programmers extensively use Laravel; thus, beginners need to learn Laravel as quickly as possible.
Codelobster IDE makes it simple and quick to set up a local Laravel installation. There is no need to use the command line or download and run the larger VirtualBox and Homestead virtual machines.
For the job, we’ll need our IDE and the most recent version of XAMPP, which is fully compatible with the framework’s most recent version. XAMPP 7.2.12 is used in this post, and we urge that you install it as well.
Launch CodeLobster and select “Tools” -> “Preferences” -> “PHP” from the main menu. Specify the path to the executable file “php.exe,” which looks like this in our system: “D:/xampp-7.2.12/php/php.exe.”
Check the “php.ini” file to see if all of the required PHP extensions are enabled, such as php bz2, php curl, php fileinfo, php gd2, php gettext, php mbstring, php exif, php mysqli, php pdo mysql, php pdo sqlite, php openssl, and php ftp.
Now that everything is set up, we can start the MySQL and Apache servers and get down to work.
You can also learn:TOP ASKING LARAVEL INTERVIEW QUESTIONS
Installing Laravel in CodeLobster IDE
Create a project by going to the main menu “Project” -> “Create Project.”
Select “Create Empty Laravel Project” as the type of the newly created project in the dialogue box that displays.

Specify the project name, which will be saved in the “htdocs” folder in the XAMPP installation directory.
To install the framework, enable the option “Create a project in a new folder” and then click “OK.”
A few procedures must be completed before we may input the basic settings.

Select the “Use Database” checkbox and provide the database name, username, and password to connect the system to an existing database.
Fill in the server name and port in the following dialogue box. Nothing has to be altered if MySQL is running on the local machine.

All of the information we provide will be saved automatically in the “config/database.php” file, which may subsequently be edited manually by accessing the file in the editor.

We have the option to select more official packages for the installation in the next dialogue:
- Cashier – is an interface for interacting with Stripe and Braintree services to set up an online payment system on the site.
- Envoy – is a tool for arranging the execution of various operations on a remote server, such as PHP code execution or macros with many sequential commands.
- Horizon – provides a control panel and API for accessing the Redis queue service, allowing web applications to run faster.
- Passport implements the OAuth2 authorization mechanism and provides sophisticated functionality for user authentication via the API.
- Scout – it synchronizes your search index with the records in the model for database work and allows you to do full-text searches.
- Socialite – supports OAuth authentication, allowing you to connect using Google, Facebook, Twitter, LinkedIn, GitHub, GitLab, and Bitbucket.
Such tools will aid in the completion of large-scale projects, but if you are only learning the framework, you can skip this stage for the time being.

If you use autocomplete while typing by using the Ctrl + Space key combination to retrieve a list of authorized techniques in this context, it will be much easier for you to take advantage of all of its benefits.
When we run our code, we’ll get an array with information about countries, which we can now send to the view to format and show.
We just select the names of the nations in our educational example and generate an HTML list, which will be shown using the default view.
Open your browser to “http://localhost/laravel/public/countries” and you’ll get an exact list of all the countries in our database.

Summary
This tutorial taught us how to use the CodeLobster IDE’s wizard to quickly build a new project and install Laravel.
This is a global solution that works on any operating system and does not necessitate the use of the command line or the installation of additional applications.
All MVC and ORM frameworks work on the same basic premise. You’ve learned the fundamentals of getting started with Laravel after reading this article; with this knowledge, you’ll be able to master various PHP libraries quickly and easily.
Read Also: LARAVEL LIVEWIRE – HOW IT WORKS