Articles

Named Routes

Named routes is an important feature in the Laravel framework. It allows you to refer to the routes when generating URLs or redirects to the specific routes..

Laravel Routing Parameters

There are two types of parameters we can use: Required Parameters Optional Parameters.

Laravel Basic Routing

The main functionality of the routes is to route all your application requests to the appropriate controller..

Features of Laravel

Laravel is provided with a well-defined toolbox that allows the developers to write less code leading to less possibility of errors..

Laravel

Laravel is an open-source PHP framework. It also offers the rich set of functionalities that incorporates the basic features of PHP frameworks such as Codelgniter, Yii, and other programming languages like Ruby on Rails..

Python break statement

The break is a keyword in python which is used to bring the program control out of the loop..

  • Python
  • 473 Views

Python While loop

The Python while loop allows a part of the code to be executed until the given condition returns false. It is also known as a pre-tested loop..

  • Python
  • 507 Views

Python If-else statements

Decision making is the most important aspect of almost all the programming languages. As the name implies, decision making allows us to run a particular block of code for a particular decision..

  • Python
  • 507 Views

Python Comments

Python Comment is an essential tool for the programmers. Comments are generally used to explain the code. We can easily understand the code if it has a proper explanation..

  • Python
  • 596 Views

Python Class and Objects

Suppose a class is a prototype of a building. A building contains all the details about the floor, rooms, doors, windows, etc. we can make as many buildings as we want, based on these details..

  • Python
  • 502 Views