How to install Laravel ? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
471 reviews
Published on 14-Feb-2022
For managing dependencies, Laravel uses composer. Make sure you have a Composer installed on your system before you install Laravel. In this chapter, you will see the installation process of Laravel.
What is Laravel - Application Structure? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
472 reviews
Published on 14-Feb-2022
The application structure in Laravel is basically the structure of folders, sub-folders and files included in a project. Once we create a project in Laravel, we get an overview of the application structure as shown in the image here.
How to setup Configuration in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
473 reviews
Published on 14-Feb-2022
n the previous chapter, we have seen that the basic configuration files of Laravel are included in the config directory. In this chapter, let us discuss the categories included in the configuration.
How to set Routing in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
474 reviews
Published on 14-Feb-2022
In Laravel, all requests are mapped with the help of routes. Basic routing routes the request to the associated controllers. This chapter discusses routing in Laravel.
What is Middleware in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
475 reviews
Published on 14-Feb-2022
Middleware acts as a bridge between a request and a response. It is a type of filtering mechanism. This chapter explains you the middleware mechanism in Laravel.
What is Namespaces in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
476 reviews
Published on 14-Feb-2022
Namespaces can be defined as a class of elements in which each element has a unique name to that associated class. It may be shared with elements in other classes
How to Creating a Controller in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
477 reviews
Published on 14-Feb-2022
In the MVC framework, the letter "C" stands for Controller. It acts as a directing traffic between Views and Models. In this chapter, you will learn about Controllers in Laravel.
How to Retrieving the Request URI in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
478 reviews
Published on 14-Feb-2022
The “path†method is used to retrieve the requested URI. The is method is used to retrieve the requested URI which matches the particular pattern specified in the argument of the method. To get the full URL, we can use the url method.
How to Creating a Cookie in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 14-Feb-2022
479 reviews
Published on 14-Feb-2022
Cookies play an important role while dealing a users session on a web application. In this chapter, you will learn about working with cookies in Laravel based web applications.
What is Laravel - Response Function? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
487 reviews
Published on 15-Feb-2022
A web application responds to a users request in many ways depending on many parameters. This chapter explains you in detail about responses in Laravel web applications.
How to create Views in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
488 reviews
Published on 15-Feb-2022
In MVC framework, the letter “V†stands for Views. It separates the application logic and the presentation logic. Views are stored in resources/views directory. Generally, the view contains the HTML which will be served by the application.
How to implement Blade Templates in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
489 reviews
Published on 15-Feb-2022
Laravel 5.1 introduces the concept of using Blade, a templating engine to design a unique layout. The layout thus designed can be used by other views, and includes a consistent design and structure.
How to Redirections in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
490 reviews
Published on 15-Feb-2022
Named route is used to give specific name to a route. The name can be assigned using the “as†array key.
How to connect Database with Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
491 reviews
Published on 15-Feb-2022
Laravel has made processing with database very easy. Laravel currently supports following 4 databases
How to handle Errors and Logging in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
492 reviews
Published on 15-Feb-2022
This chapter deals with errors and logging in Laravel projects and how to work on them.
What is Forms in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
493 reviews
Published on 15-Feb-2022
Laravel provides various in built tags to handle HTML forms easily and securely. All the major elements of HTML are generated using Laravel. To support this, we need to add HTML package to Laravel using composer.
How to use Localization in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
494 reviews
Published on 15-Feb-2022
Localization feature of Laravel supports different language to be used in application. You need to store all the strings of different language in a file and these files are stored at resources/views directory. You should create a separate directory for each supported language. All the language files should return an array of keyed strings as shown below.
How to use Session variable in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
495 reviews
Published on 15-Feb-2022
Sessions are used to store information about the user across the requests. Laravel provides various drivers like file, cookie, apc, array, Memcached, Redis, and database to handle session data. By default, file driver is used because it is lightweight. Session can be configured in the file stored at config/session.php.
How to use Validation in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
496 reviews
Published on 15-Feb-2022
Validation is the most important aspect while designing an application. It validates the incoming data. By default, base controller class uses a ValidatesRequests trait which provides a convenient method to validate incoming HTTP requests with a variety of powerful validation rules.
How to File Uploading in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
497 reviews
Published on 15-Feb-2022
Uploading Files in Laravel is very easy. All we need to do is to create a view file where a user can select a file to be uploaded and a controller where uploaded files will be processed.
How to Sending Email in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
498 reviews
Published on 15-Feb-2022
Laravel uses free feature-rich library SwiftMailer to send emails. Using the library function, we can easily send emails without too many hassles. The e-mail templates are loaded in the same way as views, which means you can use the Blade syntax and inject data into your templates.
How to use Ajax in Laravel? . The Complete Laravel Developer Course 2024.
Posted by admin
Published on 15-Feb-2022
499 reviews
Published on 15-Feb-2022
Ajax (Asynchronous JavaScript and XML) is a set of web development techniques utilizing many web technologies used on the client-side to create asynchronous Web applications. Import jquery library in your view file to use ajax functions of jquery which will be used to send and receive data using ajax from the server. On the server side you can use the response() function to send response to client and to send response in JSON format you can chain the response function with json() function.