Laravel Course

For managing dependencies, Laravel uses Composer. Make sure you have a Composer installed on your system before you install Laravel.
- If you not have Composer installed, visit the following URL and download composer to install it on your system:
//getcomposer.org/download/

Installing Laravel in XAMPP

I use XAMPP for PHP-MySQL applications, so I install laravel in XAMPP.
I have XAMPP installed on Windows, in "E:/xampp/" folder.

1. To install Laravel, use composer in the CMD (Command Line Interface). To open the Command Line Interface in windows, press the Start button and write "cmd" in the search field.

2. In the command line interface window I navigate to the "E:/xampp/htdocs/" folder, where I want to create a Laravel project for tests, called "lrvt", I write this command, then press Enter:
composer create-project laravel/laravel lrvt dev-develop
In the "E:/xampp/htdocs/" directory, the composer will create a folder called "lrvt" with the Laravel framework, upcoming version. The "dev-develop" instruction specifies to install the next upcoming version, which is in development state.
To create a Laravel project with the current stable version, use the "–-prefer-dist" instruction:
composer create-project –-prefer-dist laravel/laravel project_name
- Or, just the "create-project" command, with nothing after the project_name (you can use any project name, i used "lrvt"):
composer create-project laravel/laravel project_name
At this point, I have a working installation of Laravel on the local host.

Testing Laravel project

To test the integrity of the installation with XAMPP, I start the XAMPP, then, in browser I go to:
localhost/lrvt/public/
It will display a page like in this image:
php artisan serve

- Alternatively, you can use the PHP's Built-in Web Server. In Command Line Interface navigate to the directory with Laravel project, then initialize the following instruction in command line interface:
php artisan serve
After executing the above command, you will see a screen as shown below:

php artisan serve
Now, point your browser to:
http://localhost:8000
- When you want to stop the server, press Ctrl-C.
If you want a port other than default 8000, just specify it with "--port" command.
php artisan serve --port=8080
If you get an error like: "RuntimeException No application encryption key has been specified.", you have to generate an APP_KEY in the ".env" file.
- If the root directory of your project doesn’t contain the .env file then rename the ".env.example" to ".env" file.
Execute the following command where you have installed Laravel.
php artisan key:generate
The newly generated key can be seen in the .env file.
If you use laravel on Linux /Unix system, set the write permission for the directory storage and bootstrap/cache.

To know the laravel installed version, run this command, with command line interface, in the directory where you installed laravel:
php artisan --version
Or, check it manually from the file:
your-project-folder/vendor/laravel/framework/src/Illuminate/Foundation/Application.php

const VERSION = '5.5-dev'; //version of laravel

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
Laravel - Installation

Last accessed pages

  1. Get Lower, Higher, and Closest Number (5342)
  2. Simple Admin Login PHP Script (10894)
  3. jQuery parent, children and nth-child() (13826)
  4. Display UL bullets and OL numbers on the right side (8088)
  5. Convert BBCode to HTML and HTML to BBCode with JavaScript (9298)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (201)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide