Laravel Course

Like all popular PHP frameworks such as Symfony, Yii, Codeigniter and others, Laravel is a MVC framework (Model-View-Controller). It is an application architecture model which separates an application into three logical components:

Basic directories structure

Here is an image with directories structure of Laravel 5.5:
laravel directories structure

The app folder in the Laravel contains the Models and Controllers of the application.
Models are created in the root of the app folder, where as Controllers and Middlewares are created in their respective folders inside the Http folder.
Views in Laravel (the templates that are rendered as HTML) are created in views folder inside the resources folder.

The resources directory contains raw assets such as the LESS and Sass files, localization and language files, and Templates that are rendered as HTML.
The storage directory contains App storage, like file uploads etc. Framework storage (cache), and application-generated logs.
The vendor directory contains composer dependencies.

Routing for controllers is handled by the Web.php file located inside the routes folder.
The vendor directory contains composer dependencies.
In the .env file you can add your data for connecting to a mysql database (DB_DATABASE, DB_USERNAME, DB_PASSWORD).
You can also configure the locale, time zone, etc. of the application in the config/app.php file.
The public folder is the application’s document root. It starts the Laravel application. It also contains the assets of the application like JavaScript, CSS, Images, etc.

- To run your app, you need to go to the public folder of your Laravel application.

Display desired content

Once we know the Laravel architecture and the directory and files structure, we can edit and create files to display in browser the content we want.
Open the Command Line Interface (CMD on Windows), navigate to the folder where you have Laravel project, and run this command to start the php built-in server:
php artisan serve
If you access this URL in browser:
http://localhost:8000/
- it shows the predefined Home page. To change that page, open the "welcome.blade.php" file (in the "resources/views/" folder), and edit its content with any php, html, css, javascript code you want.
- For example, put this code in welcome.blade.php file:
<!doctype html>
<html lang="{{app()->getLocale()}}">
<head>
<meta charset="utf-8">
<title>Hello</title>
</head>
<body>
<h1>Hello to Me</h1>
<p>Laravel {{App::VERSION()}}</p>
</body>
</html>
Now, if you access again the "//localhost:8000/" in browser, you'll see a page like in this image:

php artisan serve

The ".blade" in the name of the "welcome.blade.php" file it is for parsing Blade Templates.
If you rename that file just "welcome.php", it will display its content, but without parsing the Blade Templates.
- See this page for more details about Laravel - Blade Templates

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 Basic Architecture

Last accessed pages

  1. JavaScript Course - Free lessons (31411)
  2. Properties and Methods of the Form elements (594)
  3. PHP Strings (3263)
  4. Selection Tools (8145)
  5. Get Lower, Higher, and Closest Number (5342)

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