Determined AI Announces the Future of AI Infrastructure

We are entering the golden age of Ai services. Model-driven, statistical AI has already made progress on applications such as Computer Vision, Speech Recognition and Machine Translation, with…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




Laravel Installation

Installation of Laravel — The PHP Framework

In this article, you can get to know how to install Laravel to your system within 5 steps.

Before that, you want to know about two main things we will find while installing Laravel.

1.Composer

A composer is a tool that includes all the dependencies and libraries. It allows a user to create a project with respect to the mentioned framework. All the dependencies are noted in the composer.json file which is placed in the source folder.

2. Artisan

The command-line interface used in Laravel is Artisan. It provides a number of helpful commands for your use while developing your application.

Now let us see the steps of installation.

Go to the following URL and download the composer to install it on your system.

Go to command prompt and check the installation by typing the Composer command as shown in the following screenshot.

Screenshot by Author

By typing the following command in your command prompt you can install the complete framework.

composer create-project laravel/laravel test dev-develop

The output of the command is as shown below-

Screenshot by Author

Now you can start Laravel service by executing the following command.

php artisan serve

Copy the URL underlined in gray in the above screenshot and open it in the browser. If you see the following screen, it implies Laravel has been installed successfully.

Screenshot by Author

Now you can develop your web application as you need.

Thank you for reading.❤

Stay tuned for more about Laravel.🤞

Add a comment

Related posts:

Apa bedanya UI dengan UX

Terkadang orang awam akan sulit membedakan antara UI dengan UX atau bahkan sama sekali tidak mengetahui apa itu UI dan UX. Sehingga pada artikel kali ini saya akan membagikan tulisan saya lewat…

How ACH Payments Create An Effective Banking Channel

Consumers give businesses their account information so that businesses can debit their accounts. This is the way since the 1970s that the Automated Clearing House (ACH) payments have provided the…

Multiple environments on NewRelic

As you can see I have all the common settings under the [newrelic] tag and by default I set monitor_mode = false and developer_mode = true. 2 environments have been declared on that file, production…